influxdb/docs/slides/mnGo/simple/react_go

15 lines
207 B
Plaintext
Raw Normal View History

2017-03-16 15:01:23 +00:00
// +build OMIT
package main
import (
"log"
"net/http"
)
func main() {
log.Fatal(http.ListenAndServe(":8888", http.FileServer(&Dir{
Default: "src/ui/index.html",
dir: http.Dir("src/ui"),
})))
}