blob: a75d5abb3d393d8bf5da5812ff079a09085f86ea [file] [log] [blame]
package main
import (
"log"
"net/http"
)
func main() {
fs := http.FileServer(http.Dir("/static"))
http.Handle("/", fs)
log.Panic(http.ListenAndServe(":80", nil))
}