package conway import ( "math/rand" "time" ) func init() { rand.Seed(time.Now().UTC().UnixNano()) } func RunWebGame(height, width, sleepMs int, mutate bool) (int, error) { return -1, nil }