19 lines
451 B
Go
19 lines
451 B
Go
package common
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/perfect-panel/server/internal/logic/common"
|
|
"github.com/perfect-panel/server/internal/svc"
|
|
"github.com/perfect-panel/server/pkg/result"
|
|
)
|
|
|
|
// Get Tos Content
|
|
func GetTosHandler(svcCtx *svc.ServiceContext) func(c *gin.Context) {
|
|
return func(c *gin.Context) {
|
|
|
|
l := common.NewGetTosLogic(c.Request.Context(), svcCtx)
|
|
resp, err := l.GetTos()
|
|
result.HttpResult(c, resp, err)
|
|
}
|
|
}
|