This commit is contained in:
2025-11-19 01:28:34 +03:00
parent 469879cfd9
commit 1b9bb09ca4
12 changed files with 659 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package config
import "log/slog"
type LoggingConfig struct {
Instance *slog.Logger
Level string
ShowCanDump bool
}
type Config struct {
Timezone string
ServiceURL string
LoggingConfig
DatabaseConfig
}