urna-backend / space /controller /home_controller.go
lifedebugger's picture
Deploy files from GitHub repository
5c33153
package controller
import "github.com/gin-gonic/gin"
func HomeController(c *gin.Context) {
c.JSON(200, gin.H{
"message": "API Is Running Gladly!",
})
}