Library/main.go

10 lines
141 B
Go
Raw Normal View History

2017-10-06 09:25:37 +00:00
package main
2017-10-06 10:09:58 +00:00
import "git.mowie.cc/konrad/Library/routes"
2017-10-06 09:25:37 +00:00
2017-10-06 10:09:58 +00:00
func main(){
e := routes.NewEcho()
routes.RegisterRoutes(e)
e.Start(":8082")
2017-10-06 09:25:37 +00:00
}