pweb-api-ets / controller /home_controller.go
lifedebugger's picture
Deploy files from GitHub repository
131eba4
raw
history blame contribute delete
175 Bytes
package controller
import "github.com/gin-gonic/gin"
func HomeController(c *gin.Context) {
c.JSON(200, gin.H{
"message": "PWEB API 2025 by Abdan Hafidz!",
})
}