예제 #1
0
파일: server.go 프로젝트: swaggy/snake
func Reset(board *snake.Board) Handler {
	return ModifyAndWrite(board, func() {
		board.Initialize()
	})
}