Skip to content

Instantly share code, notes, and snippets.

@vmihailenco
Created June 2, 2019 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vmihailenco/db38839de60580b556695cc3e7fc02cc to your computer and use it in GitHub Desktop.
Save vmihailenco/db38839de60580b556695cc3e7fc02cc to your computer and use it in GitHub Desktop.
package main
import (
"log"
"net/http"
)
func main() {
http.HandleFunc("/upload", func(w http.ResponseWriter, req *http.Request) {
})
log.Println("listening on :8080")
http.ListenAndServe(":8080", nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment