示例#1
0
文件: server.go 项目: swaggy/snake
func Reset(board *snake.Board) Handler {
	return ModifyAndWrite(board, func() {
		board.Initialize()
	})
}