about summary refs log tree commit diff
path: root/src/main.go
blob: 9e01b74a203920139a73b834bbfc76753947f4ac (plain)
1
2
3
4
5
6
7
package main

import "net/http"

func main() {
	panic(http.ListenAndServe(":8081", http.FileServer(http.Dir("./"))))
}