whispervis/main.go

15 lines
235 B
Go
Raw Normal View History

2018-09-05 13:53:09 +00:00
package main
import (
"github.com/gopherjs/vecty"
)
func main() {
2018-09-17 19:11:04 +00:00
page := NewPage()
2018-09-05 13:53:09 +00:00
vecty.SetTitle("Whisper Simulation")
vecty.AddStylesheet("css/pure-min.css")
vecty.AddStylesheet("css/controls.css")
vecty.RenderBody(page)
}