Skip to content

Instantly share code, notes, and snippets.

@akumbhani66
Created January 2, 2019 16:06
Show Gist options
  • Save akumbhani66/42327902dfede8fad0ef494d707b336d to your computer and use it in GitHub Desktop.
Save akumbhani66/42327902dfede8fad0ef494d707b336d to your computer and use it in GitHub Desktop.
Simple Go program to serve current directory.
package main
import (
"log"
"net/http"
)
func main() {
http.Handle("/", http.StripPrefix("/", http.FileServer(http.Dir("./"))))
log.Println("Listening at 3000...")
http.ListenAndServe(":3000", nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment