mirror of
https://github.com/status-im/whispervis.git
synced 2025-02-01 16:04:56 +00:00
16 lines
283 B
Go
16 lines
283 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gopherjs/vecty"
|
|
)
|
|
|
|
func main() {
|
|
page := NewPage()
|
|
|
|
vecty.SetTitle("Whisper Simulation")
|
|
vecty.AddStylesheet("css/bulma.css")
|
|
vecty.AddStylesheet("css/bulma-extensions.min.css")
|
|
vecty.AddStylesheet("css/custom.css")
|
|
vecty.RenderBody(page)
|
|
}
|