From 819fa7f2185e05edef8b6626f36b464b886de38f Mon Sep 17 00:00:00 2001 From: Rogee Date: Thu, 18 Dec 2025 10:22:48 +0800 Subject: [PATCH] update llm --- backend/llm.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/llm.txt b/backend/llm.txt index 32bfcf9..a17a156 100644 --- a/backend/llm.txt +++ b/backend/llm.txt @@ -114,7 +114,7 @@ If you need to define a module HTTP middleware (applies to the module route grou 1) Run `atomctl gen route` first. 2) Edit `backend/app/http//routes.manual.go`: -- Update `Path()` to return the current module route group prefix (must match the prefix used in `routes.gen.go`, e.g. `/super/v1`, `/t/:tenant_code/v1`). +- Update `Path()` to return the current module route group prefix (must match the prefix used in `routes.gen.go`, e.g. `/super/v1`, `/t/:tenantCode/v1`). - Update `Middlewares()` return value: return a list like `[]any{r.middlewares.MiddlewareFunc1, r.middlewares.MiddlewareFunc2, ...}` (no `(...)`), where each item is `r.middlewares.` referencing middleware definitions in `backend/app/middlewares`. ---