Skip to content

Instantly share code, notes, and snippets.

@leonmwandiringa
Created September 8, 2020 21:15
Show Gist options
  • Save leonmwandiringa/2a33034b438413f474a5ad7ca21524bb to your computer and use it in GitHub Desktop.
Save leonmwandiringa/2a33034b438413f474a5ad7ca21524bb to your computer and use it in GitHub Desktop.
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