mirror of
https://github.com/status-im/whispervis.git
synced 2025-02-02 08:25:06 +00:00
15 lines
235 B
Go
15 lines
235 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gopherjs/vecty"
|
|
)
|
|
|
|
func main() {
|
|
page := NewPage()
|
|
|
|
vecty.SetTitle("Whisper Simulation")
|
|
vecty.AddStylesheet("css/pure-min.css")
|
|
vecty.AddStylesheet("css/controls.css")
|
|
vecty.RenderBody(page)
|
|
}
|