whispervis/main.go

15 lines
230 B
Go
Raw Normal View History

2018-09-05 16:53:09 +03:00
package main
import (
"github.com/gopherjs/vecty"
)
func main() {
2018-09-17 22:11:04 +03:00
page := NewPage()
2018-09-05 16:53:09 +03:00
vecty.SetTitle("Whisper Simulation")
2018-10-19 22:10:56 +02:00
vecty.AddStylesheet("css/bulma.css")
2018-10-20 14:47:19 +02:00
vecty.AddStylesheet("css/custom.css")
2018-09-05 16:53:09 +03:00
vecty.RenderBody(page)
}