19 lines
310 B
Go
19 lines
310 B
Go
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"gpt-plus/internal/db"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func GetDashboard(c *gin.Context) {
|
|
stats, err := db.GetDashboardStats(db.GetDB())
|
|
if err != nil {
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
|
|
return
|
|
}
|
|
c.JSON(http.StatusOK, stats)
|
|
}
|