11 lines
130 B
Go
11 lines
130 B
Go
package contracts
|
|
|
|
import (
|
|
"github.com/gofiber/fiber/v3"
|
|
)
|
|
|
|
type HttpRoute interface {
|
|
Register(fiber.Router)
|
|
Name() string
|
|
}
|