From 97a863ed0861493b4083b71e6cdc47e557f056a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=A1=E8=8B=A5?= Date: Sun, 8 Mar 2026 08:26:29 +0800 Subject: [PATCH] =?UTF-8?q?sync:=20soul-api=20=E8=B7=AF=E7=94=B1=20|=20?= =?UTF-8?q?=E5=8E=9F=E5=9B=A0:=20=E5=90=8E=E7=AB=AF=E8=B7=AF=E7=94=B1?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- soul-api/internal/router/router.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/soul-api/internal/router/router.go b/soul-api/internal/router/router.go index e8ed447a..1d9b4cfc 100644 --- a/soul-api/internal/router/router.go +++ b/soul-api/internal/router/router.go @@ -74,6 +74,10 @@ func Setup(cfg *config.Config) *gin.Engine { admin.POST("/users", handler.AdminUsersAction) admin.PUT("/users", handler.AdminUsersAction) admin.DELETE("/users", handler.AdminUsersAction) + // 神射手 + admin.GET("/shensheshou/query", handler.AdminShensheShouQuery) + admin.POST("/shensheshou/ingest", handler.AdminShensheShouIngest) + admin.POST("/shensheshou/batch", handler.AdminShensheShouBatchQuery) } // ----- 鉴权 -----