gobyexample/076-static-content/static-content.go
Mark McGranaghan 1f7065e387 index work
2012-09-23 18:06:40 -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