ded6e3b
1 2 3 4 5 6 7 8 9 10 11
package web import ( "net/http" ) func Serve(addr string, webroot string) { fs := http.FileServer(http.Dir(webroot)) http.Handle("/", fs) http.ListenAndServe(addr, nil) }