11 lines
118 B
Go
11 lines
118 B
Go
package domainutilsgo
|
|
|
|
import (
|
|
"../gameUtils"
|
|
)
|
|
|
|
type Domain struct {
|
|
ServerId string
|
|
Games []gameUtils.Game
|
|
}
|