codekingpro's picture
Add files using upload-large-folder tool
d7a5f2f verified
Raw
History Blame Contribute Delete
171 Bytes
package main
import "net/http"
func main() {
http.Handle("/", http.StripPrefix("/static/", http.FileServer(http.Dir("./output"))))
http.ListenAndServe(":8000", nil)
}