This repository has been archived on 2019-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
scoreboard/data/game.go
2019-05-27 23:46:09 +02:00

8 lines
185 B
Go

package data
import "go.mongodb.org/mongo-driver/bson/primitive"
type Game struct {
ID primitive.ObjectID `bson:"_id,omitempty"`
Name string `bson:"name,omitempty"`
}