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