From 44345bb9f7a87ea3d6b58efd23be73d711a85e88 Mon Sep 17 00:00:00 2001 From: Rogee Date: Wed, 17 Dec 2025 23:50:27 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=20HttpRoute=20?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E7=9A=84=20Path=20=E5=92=8C=20Middlewares=20?= =?UTF-8?q?=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- contracts/http.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contracts/http.go b/contracts/http.go index 43502ad..6bec48d 100644 --- a/contracts/http.go +++ b/contracts/http.go @@ -7,4 +7,6 @@ import ( type HttpRoute interface { Register(fiber.Router) Name() string + Path() string + Middlewares() []any }