ictgj-voting/model_games.go

13 lines
152 B
Go
Raw Normal View History

2017-04-21 18:17:18 +00:00
package main
import "github.com/pborman/uuid"
type Game struct {
UUID *uuid.UUID
Name string
}
2017-06-08 20:43:11 +00:00
func dbIsValidGame(id string) bool {
return true
}