lobby still nothing doer

main
Bel LaPointe 2025-02-09 17:06:23 -07:00
parent 47321142ea
commit ad35abb995
1 changed files with 8 additions and 0 deletions

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
}