Created
September 8, 2020 21:15
-
-
Save leonmwandiringa/2a33034b438413f474a5ad7ca21524bb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"github.com/gin-gonic/gin" | |
"github.com/goprovision/api/handlers" | |
) | |
func main() { | |
//setup gin framework | |
r := gin.New() | |
r.Use(gin.Logger()) | |
r.Use(gin.Recovery()) | |
r.GET("/api/v1/working", handlers.IsApplicationWorking) //api route | |
r.Run(":80") //run application | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment