Initial commit

This commit is contained in:
2026-03-05 11:21:18 +03:00
commit 056e2ad529
18 changed files with 729 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package config
import "log/slog"
type Log struct {
Level slog.Level
FilePath string
TextOutput bool
StdoutEnabled bool
FileEnabled bool
FluentEnabled bool
}