Skeleton files and http

This commit is contained in:
Nicholas Keller
2026-08-14 11:24:47 -04:00
parent 432a156403
commit 62ed7e190a
11 changed files with 167 additions and 19 deletions
+2 -2
View File
@@ -2,7 +2,7 @@ package db
import (
"database/sql"
"log"
"log/slog"
"os"
)
@@ -19,6 +19,6 @@ func Migrate(db *sql.DB, migrations []string) {
res, err := db.Exec(string(data))
_ = res
CheckError(err)
log.Print("Applied migration " + x)
slog.Info("Applied migration", "name", x)
}
}