Files
atomctl/templates/project/pkg/atom/contracts/http.go.tpl
2025-01-23 19:03:17 +08:00

11 lines
130 B
Smarty

package contracts
import (
"github.com/gofiber/fiber/v3"
)
type HttpRoute interface {
Register(fiber.Router)
Name() string
}