server: implement messages and gRPC support for creating messages

This commit is contained in:
2026-05-24 17:50:39 +00:00
parent b0bcb3460b
commit e5eb48057f
12 changed files with 732 additions and 0 deletions
+3
View File
@@ -5,6 +5,7 @@ import (
"os"
"git.dubyatp.xyz/dubyatp/scannerbot/server/api"
grpcserver "git.dubyatp.xyz/dubyatp/scannerbot/server/grpc"
"github.com/joho/godotenv"
)
@@ -35,6 +36,8 @@ func main() {
os.Exit(1)
}
go grpcserver.Start()
slog.Info("Starting the API server...")
api.Start()
}