beancount-gs/server.go

11 lines
150 B
Go

package main
import (
"net/http"
)
func main() {
http.Handle("/", http.FileServer(http.Dir("./public")))
_ = http.ListenAndServe(":3001", nil)
}