Files
scannerbot/server/main.go
T
2026-05-12 02:30:13 +00:00

15 lines
185 B
Go

package main
import (
"log/slog"
"git.dubyatp.xyz/dubyatp/scannerbot/server/api"
)
func main() {
//println("hello world")
slog.Info("Starting the API server...")
api.Start()
}