feat: 添加 HttpRoute 接口的 Path 和 Middlewares 方法

This commit is contained in:
2025-12-17 23:50:27 +08:00
parent 744ae45c15
commit 44345bb9f7

View File

@@ -7,4 +7,6 @@ import (
type HttpRoute interface { type HttpRoute interface {
Register(fiber.Router) Register(fiber.Router)
Name() string Name() string
Path() string
Middlewares() []any
} }