initial commit

This commit is contained in:
axolotlmaid 2024-09-25 16:52:09 +01:00
commit f338d86663
3 changed files with 25 additions and 0 deletions

13
cmd/backend/main.go Normal file
View file

@ -0,0 +1,13 @@
package main
import (
"log/slog"
"os"
"github.com/lmittmann/tint"
)
func main() {
logger := slog.New(tint.NewHandler(os.Stderr, nil))
slog.SetDefault(logger)
}