Skip to content

Instantly share code, notes, and snippets.

@delfer
Last active March 13, 2018 06:36
Show Gist options
  • Select an option

  • Save delfer/0d9fea067121335a381241683783524c to your computer and use it in GitHub Desktop.

Select an option

Save delfer/0d9fea067121335a381241683783524c to your computer and use it in GitHub Desktop.
GO lang HTTP server
//go run main.g
import "net/http"
func main() {
http.ListenAndServe(":8000", http.FileServer(http.Dir(".")))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment