package log import ( "log/slog" "os" ) type Logger = *slog.Logger func New() Logger { return slog.New(slog.NewTextHandler(os.Stdout, nil)) }