This commit is contained in:
nemunaire 2022-10-02 23:24:53 +02:00
parent be8ff3466a
commit a9be05854c
11 changed files with 331 additions and 12 deletions

13
api/history.go Normal file
View file

@ -0,0 +1,13 @@
package api
import (
"github.com/gin-gonic/gin"
"git.nemunai.re/nemunaire/reveil/config"
)
func declareHistoryRoutes(cfg *config.Config, router *gin.RouterGroup) {
router.GET("/stats", func(c *gin.Context) {
})
}