serve.go: remove serve.go

No one noticed this was here. It is not used. python -m SimpleHTTPServer
does the same thing.
This commit is contained in:
Andrew Jeddeloh 2017-10-20 14:19:36 -07:00
parent f7faf7a8a3
commit 1c83274945

View File

@ -1,13 +0,0 @@
package main
import (
"net/http"
"log"
)
func main() {
err := http.ListenAndServe(":8082", http.FileServer(http.Dir("../build/images/amd64-usr/latest/")))
if err != nil {
log.Printf("Error running web server for static assets: %v", err)
}
}