13 lines
166 B
Go
13 lines
166 B
Go
package contracts
|
|
|
|
import (
|
|
"github.com/gofiber/fiber/v3"
|
|
)
|
|
|
|
type HttpRoute interface {
|
|
Register(fiber.Router)
|
|
Name() string
|
|
Path() string
|
|
Middlewares() []any
|
|
}
|