File size: 175 Bytes
131eba4
 
 
 
 
 
 
 
 
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": "PWEB API 2025 by Abdan Hafidz!",
	})
}