Skip to content

Instantly share code, notes, and snippets.

@xuboso
Last active May 25, 2020 06:55
Show Gist options
  • Save xuboso/59e66381b1b76d52a98795984752063a to your computer and use it in GitHub Desktop.
Save xuboso/59e66381b1b76d52a98795984752063a to your computer and use it in GitHub Desktop.
package main
import "net/http"
func main() {
fs := http.FileServer(http.Dir("downloads/"))
http.Handle("/static/", http.StripPrefix("/static/", fs))
http.ListenAndServe(":8081", nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment