GoServer/src/Go.cr

19 lines
242 B
Crystal
Raw Normal View History

require "./Go/*"
2018-05-25 12:43:30 -07:00
require "kemal"
# TODO: Write documentation for `Go`
module Go
# TODO: Put your code here
end
2018-05-25 12:43:30 -07:00
URL = "localhost"
get "/" do |env|
black = true
id = 1
size = 9
render "src/Go/views/game.ecr"
end
Kemal.run