beancount-gs/server.go

14 lines
189 B
Go
Raw Normal View History

2021-09-24 08:11:41 +00:00
package main
import (
"net/http"
2021-11-04 09:58:57 +00:00
"github.com/gin-gonic/gin"
2021-09-24 08:11:41 +00:00
)
func main() {
2021-11-04 09:58:57 +00:00
route := gin.Default()
route.StaticFS("/", http.Dir("./public"))
2021-09-24 08:11:41 +00:00
_ = http.ListenAndServe(":3001", nil)
}