package pub import ( "app/commons/constant" "github.com/gin-gonic/gin" ) func (s *Server) Info(ctx *gin.Context) { c := s.FromContext(ctx) c.Resp(map[string]interface{}{ "app": constant.SystemName, }) }