Skip to content

Instantly share code, notes, and snippets.

@nishantmodak
Created April 6, 2014 19:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nishantmodak/10010181 to your computer and use it in GitHub Desktop.
Save nishantmodak/10010181 to your computer and use it in GitHub Desktop.
package main
import (
"net/http"
)
func main() {
fs := http.FileServer(http.Dir("public"))
http.ListenAndServe(":8080", fs)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment