master
Raw Download raw file
1package main
2
3import "net/http"
4
5func main() {
6	http.ListenAndServe(":8080", http.FileServer(http.Dir(".")))
7}