modules + collect routes

This commit is contained in:
nquidox 2026-02-23 20:02:53 +03:00
parent 8c38107ff2
commit a6be7a9e21
2 changed files with 33 additions and 6 deletions

View file

@ -0,0 +1,7 @@
package app
import "github.com/gin-gonic/gin"
type Module interface {
RegisterRoutes(r *gin.RouterGroup)
}