1852f9df8b
- Removed redundant return statements in various controller functions across the dashboard module. - This change improves code readability and maintains the same functionality.
16 lines
324 B
Go
16 lines
324 B
Go
package dashboard
|
|
|
|
import (
|
|
"cs-agent/internal/pkg/httpx"
|
|
"cs-agent/internal/services"
|
|
|
|
"cs-agent/internal/pkg/httpx/params"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func DashboardGetOverview(ctx *gin.Context) {
|
|
rangeValue, _ := params.Get(ctx, "range")
|
|
httpx.WriteJSON(ctx, services.DashboardService.GetOverview(rangeValue))
|
|
}
|