Skip to content

Instantly share code, notes, and snippets.

@adkdev
Created September 24, 2015 03:49
Show Gist options
  • Save adkdev/4b4ae39f617cf0592d19 to your computer and use it in GitHub Desktop.
Save adkdev/4b4ae39f617cf0592d19 to your computer and use it in GitHub Desktop.
Serve static file with golang
package main
import (
"net/http"
"log"
)
func main() {
log.Println("Static server listening on port 5555...")
http.ListenAndServe(":5555", http.FileServer(http.Dir("D:/dev/static")))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment