Files
tinyauth/main.go
2025-10-06 20:57:18 +03:00

16 lines
265 B
Go

package main
import (
"os"
"time"
"tinyauth/cmd"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
)
func main() {
log.Logger = log.Output(zerolog.ConsoleWriter{Out: os.Stderr, TimeFormat: time.RFC3339}).With().Timestamp().Caller().Logger()
cmd.Run()
}