File size: 167 Bytes
e935eae
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
package controller

import "github.com/gin-gonic/gin"

func HomeController(c *gin.Context) {
	c.JSON(200, gin.H{
		"message": "API Is Running Gladly!",
	})
}