func main() { webgui.SetHandler("test", Dostuff) webgui.SetHandler("reverse", ReverseData) webgui.UseResource(map[string][]byte{ "/index.html": index, /*index is a variable with the content of a file in []byte form*/ }) webgui.StartServer("localhost:27000") }
func main() { webgui.SetHandler("test", Dostuff) webgui.SetHandler("reverse", ReverseData) webgui.StartServer("localhost:27000") }