File size: 171 Bytes
d7a5f2f | 1 2 3 4 5 6 7 8 9 | package main
import "net/http"
func main() {
http.Handle("/", http.StripPrefix("/static/", http.FileServer(http.Dir("./output"))))
http.ListenAndServe(":8000", nil)
}
|
d7a5f2f | 1 2 3 4 5 6 7 8 9 | package main
import "net/http"
func main() {
http.Handle("/", http.StripPrefix("/static/", http.FileServer(http.Dir("./output"))))
http.ListenAndServe(":8000", nil)
}
|