first commit

This commit is contained in:
KS Jannette
2026-05-18 21:20:44 -04:00
commit 4b39726647
14 changed files with 355 additions and 0 deletions

17
cmd/main.go Normal file
View File

@@ -0,0 +1,17 @@
package main
import (
"context"
"github.com/kjannette/go-server/internal/config"
"github.com/kjannette/go-server/internal/infrastructure/os"
"go.uber.org/zap"
)
var (
appName = ""
appVarsion = ""
)
func main() {
defer func() {_ = zap.L().Sync() }()
}