We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cf76c6 commit e445f9dCopy full SHA for e445f9d
internal/worker/config/config.go
@@ -41,6 +41,10 @@ func Default() Config {
41
Interval: Duration(24 * time.Hour),
42
MaxAge: Duration(30 * 24 * time.Hour),
43
},
44
+ DevicesCleanup: DevicesCleanup{
45
+ Interval: Duration(24 * time.Hour),
46
+ MaxAge: Duration(365 * 24 * time.Hour),
47
+ },
48
49
Database: config.Database{
50
Host: "localhost",
@@ -53,5 +57,9 @@ func Default() Config {
53
57
MaxOpenConns: 0,
54
58
MaxIdleConns: 0,
55
59
60
+ HTTP: config.HTTP{
61
+ Listen: "127.0.0.1:3000",
62
+ Proxies: []string{},
63
56
64
}
65
0 commit comments