gobyexample/075-static-content/static-content.go
Mark McGranaghan 9cee8be710 trim
2012-09-23 18:12:34 -07:00

15 lines
230 B
Go

// ## Static Content
package main
import "net/http"
func main() {
handler := http.FileServer(http.Dir("./"))
http.ListenAndServe(":5000", handler)
}
// todo: index pages
// todo: disable listing
// todo: custom 404 handling