package handler import ( "github.com/gin-gonic/gin" "zabbixagent2plugintemplate/response" ) func Hello(c *gin.Context) { response.NewResponse().Success("Hello, World!").Send(c) }