diff --git a/main.go b/main.go index a8a019d..586f71a 100644 --- a/main.go +++ b/main.go @@ -54,4 +54,9 @@ func main() { log.Print("Listening on localhost:2082") http.ListenAndServe("localhost:2082", g) + + // This entire program can be replaced with the following: + /* + log.Fatal(http.ListenAndServe('localhost:2082', http.FileServer(http.Dir('private/')))); + */ }