aboutsummaryrefslogtreecommitdiffstats
path: root/serve.go
blob: f35bb0eb0cf80a215853fdd621901219bc4feb0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package main

import (
	"net/http"
)

func main() {
	fs := http.FileServer(http.Dir("./src"))
	http.Handle("/", fs)
	http.ListenAndServe(":8082", nil)
}