improving client/server info command

This commit is contained in:
2020-06-07 18:31:01 -04:00
parent dd3fd7c4ae
commit 6d738b138d
12 changed files with 72 additions and 31 deletions

View File

@@ -48,7 +48,7 @@ func main() {
e := echo.New()
server.Echo = e
//Start the routes
e.GET("/hello", server.Hello)
//e.GET("/hello", server.Hello)
e.GET("/info/:repoName", server.GetInfo)
e.Logger.Fatal(e.Start(fmt.Sprintf("%s:%d", server.Config.BindIP, server.Config.Port)))
}