ictgj-voting/model_games.go

13 lines
152 B
Go

package main
import "github.com/pborman/uuid"
type Game struct {
UUID *uuid.UUID
Name string
}
func dbIsValidGame(id string) bool {
return true
}