fix: issues

This commit is contained in:
Rogee
2024-12-08 01:21:17 +08:00
parent 35bfbffdb5
commit cd6f42de14

View File

@@ -1,6 +1,10 @@
package contracts package contracts
import (
"github.com/gofiber/fiber/v3"
)
type HttpRoute interface { type HttpRoute interface {
Register() any Register(fiber.Router)
Name() string Name() string
} }