goshorly/routes/stats.go

17 lines
271 B
Go
Raw Normal View History

package routes
import (
"time"
2023-09-04 18:59:51 +00:00
"git.hackmi.ch/Phil/goshorly/db"
"github.com/gofiber/fiber/v2"
)
func GetStats(c *fiber.Ctx) error {
return c.JSON(&fiber.Map{
"Timestamp": time.Now(),
"Totallinks": db.GetTotalLinks(),
"Totalviews": db.GetTotalViews(),
})
}