gobyexample/075-static-content/static-content.go
2012-09-23 18:31:33 -07:00

15 lines
236 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