aboutsummaryrefslogtreecommitdiff
path: root/internal/conf
diff options
context:
space:
mode:
Diffstat (limited to 'internal/conf')
-rw-r--r--internal/conf/conf_test.go2
-rw-r--r--internal/conf/log.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/internal/conf/conf_test.go b/internal/conf/conf_test.go
index 1ac64d6c..294c4f34 100644
--- a/internal/conf/conf_test.go
+++ b/internal/conf/conf_test.go
@@ -29,7 +29,7 @@ func TestInit(t *testing.T) {
for _, v := range []struct {
section string
- config interface{}
+ config any
}{
{"", &App},
{"server", &Server},
diff --git a/internal/conf/log.go b/internal/conf/log.go
index bde739df..8ac8ec96 100644
--- a/internal/conf/log.go
+++ b/internal/conf/log.go
@@ -16,7 +16,7 @@ import (
type loggerConf struct {
Buffer int64
- Config interface{}
+ Config any
}
type logConf struct {