This commit is contained in:
2025-11-12 09:41:52 +03:00
commit 2a8566712a
44 changed files with 2602 additions and 0 deletions

10
internal/logger/logger.go Normal file
View File

@@ -0,0 +1,10 @@
package logger
import (
"log/slog"
"os"
)
func NewLogger() *slog.Logger {
return slog.New(slog.NewJSONHandler(os.Stdout, nil))
}