Skip to content

Instantly share code, notes, and snippets.

@awreece
Created April 12, 2012 06:09
Show Gist options
  • Save awreece/2364910 to your computer and use it in GitHub Desktop.
Save awreece/2364910 to your computer and use it in GitHub Desktop.
Go HTTP server
package main
import "http"
func main() {
http.Handle("/", http.FileServer(http.Dir("/tmp")))
http.ListenAndServe(":8080", nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment