server: implement chi

This commit is contained in:
2026-05-12 02:30:13 +00:00
parent 40768f0c3a
commit 9dcbd54387
4 changed files with 31 additions and 1 deletions
+10 -1
View File
@@ -1,5 +1,14 @@
package main
import (
"log/slog"
"git.dubyatp.xyz/dubyatp/scannerbot/server/api"
)
func main() {
println("hello world")
//println("hello world")
slog.Info("Starting the API server...")
api.Start()
}