Sign in
go
/
website
/
70f9a532c43392204d72e03fe0ba1a86a60125ea
/
.
/
_content
/
talks
/
2013
/
oscon-dl
/
server-fs.go
blob: 8a09f550ef6df3a06da9aa970dd2757cde6a533b [
file
] [
log
] [
blame
]
// +build ignore,OMIT
package main
import (
"log"
"net/http"
"os"
"path/filepath"
)
func main() {
log.Printf("Running...")
log.Fatal(http.ListenAndServe(
"127.0.0.1:8080",
http.FileServer(http.Dir(
filepath.Join(os.Getenv("HOME"), "go", "doc")))))
}