rough skeleton and basic user authentication

This commit is contained in:
zomo
2025-10-31 10:32:50 -05:00
commit 8355ca374b
17 changed files with 542 additions and 0 deletions

17
api/ws/main.go Normal file
View File

@@ -0,0 +1,17 @@
package ws
import (
"zomo.dev/largehadroncollider/db"
"zomo.dev/largehadroncollider/ttv"
)
func InitWSServer(dbConn db.DBConn, twitchConn ttv.TwitchConn) (WSServer, error) {
return WSServer{}, nil
}
type WSServer struct {
}
func (wsServer *WSServer) Listen() {
// start web server itself
}