Skip to content

Instantly share code, notes, and snippets.

@ysheng26
Created August 15, 2018 02:47
Show Gist options
  • Save ysheng26/339bff87801b4c307e9aace992400661 to your computer and use it in GitHub Desktop.
Save ysheng26/339bff87801b4c307e9aace992400661 to your computer and use it in GitHub Desktop.
package main
import (
"net/http"
)
func main() {
http.Handle("/", http.FileServer(http.Dir("./static")))
http.ListenAndServe(":3000", nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment