chronograf/docs/slides/mnGo/simple/router_go

12 lines
156 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(http.Dir("ui/build"))))
}