beancount-gs/server.go

11 lines
150 B
Go
Raw Normal View History

2021-09-24 08:11:41 +00:00
package main
import (
"net/http"
)
func main() {
http.Handle("/", http.FileServer(http.Dir("./public")))
_ = http.ListenAndServe(":3001", nil)
}