This commit is contained in:
Bel LaPointe
2022-02-08 10:17:45 -07:00
parent d01a933b73
commit f09d8e6cc9
2 changed files with 90 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package main
import "net/http"
func main() {
s := NewServer()
if err := s.Routes(); err != nil {
panic(err)
}
if err := http.ListenAndServe(":3004", s); err != nil {
panic(err)
}
}