lobby still nothing doer

This commit is contained in:
Bel LaPointe
2025-02-09 17:06:23 -07:00
parent 47321142ea
commit ad35abb995

View File

@@ -1,3 +1,11 @@
package lobby package lobby
import "context"
type Lobby interface{} type Lobby interface{}
type lobby struct{}
func NewLobby(ctx context.Context) (Lobby, error) {
return lobby{}, nil
}