Add schema abstraction, move event store into zooid

This commit is contained in:
Jon Staab
2025-09-25 11:54:41 -07:00
parent 3c3eefc378
commit 53ffa3fcbc
15 changed files with 398 additions and 518 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ func main() {
shutdown := make(chan os.Signal, 1)
signal.Notify(shutdown, syscall.SIGINT, syscall.SIGTERM)
port := zooid.Env("PORT", "3334")
port := zooid.Env("PORT")
srv := &http.Server{
Addr: fmt.Sprintf(":%s", port),
Handler: http.HandlerFunc(zooid.ServeHTTP),