feat(node): add PreViewNodeMultiplier endpoint and response structure

This commit is contained in:
Chang lue Tsen
2025-09-29 13:12:37 +09:00
parent 02f0d711ba
commit 453ad18303
6 changed files with 67 additions and 1 deletions
@@ -0,0 +1,18 @@
package system
import (
"github.com/gin-gonic/gin"
"github.com/perfect-panel/server/internal/logic/admin/system"
"github.com/perfect-panel/server/internal/svc"
"github.com/perfect-panel/server/pkg/result"
)
// PreView Node Multiplier
func PreViewNodeMultiplierHandler(svcCtx *svc.ServiceContext) func(c *gin.Context) {
return func(c *gin.Context) {
l := system.NewPreViewNodeMultiplierLogic(c.Request.Context(), svcCtx)
resp, err := l.PreViewNodeMultiplier()
result.HttpResult(c, resp, err)
}
}