first try

This commit is contained in:
2025-04-09 20:37:07 +02:00
commit 13c4f172d9
13 changed files with 487 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package routes
import (
"wagfarm-api/routes/asset"
"wagfarm-api/routes/log"
"github.com/gin-gonic/gin"
)
func SetupRoutes(router *gin.Engine) {
log.RegisterRoutes(router)
asset.RegisterRoutes(router)
}