This commit is contained in:
nquidox 2025-07-06 17:59:18 +03:00
commit 995ea60f34
11 changed files with 449 additions and 0 deletions

View file

@ -0,0 +1,7 @@
package interfaces
import "github.com/gin-gonic/gin"
type Router interface {
Set() *gin.Engine
}