2018-05-25 12:15:57 -07:00
|
|
|
require "./Go/*"
|
2018-05-25 12:43:30 -07:00
|
|
|
require "kemal"
|
2018-05-25 12:15:57 -07:00
|
|
|
|
|
|
|
# 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
|