Skip to content

Instantly share code, notes, and snippets.

@akira093
Created September 16, 2014 04:50
Show Gist options
  • Select an option

  • Save akira093/17fda195424f7e1f416e to your computer and use it in GitHub Desktop.

Select an option

Save akira093/17fda195424f7e1f416e to your computer and use it in GitHub Desktop.
package main
import (
"log"
"net/http"
"os"
"path"
)
func main() {
log.Fatal(http.ListenAndServe(":8080", http.FileServer(http.Dir(path.Dir(os.Args[0])))))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment