From a7fa591943b52efcbcc9bfae11d05ca1abf374c0 Mon Sep 17 00:00:00 2001 From: lixiangwuxian Date: Wed, 11 Jun 2025 19:17:29 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=8F=90=E5=8D=95?= =?UTF-8?q?=E5=92=8C=E7=BB=93=E5=8D=95=E5=A4=84=E7=90=86=E4=B8=AD=E7=9A=84?= =?UTF-8?q?=E7=A9=BA=E6=A0=BC=E9=97=AE=E9=A2=98=EF=BC=8C=E7=A1=AE=E4=BF=9D?= =?UTF-8?q?=E6=AD=A3=E7=A1=AE=E6=B3=A8=E5=86=8C=E5=A4=84=E7=90=86=E7=A8=8B?= =?UTF-8?q?=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- handler/ticket/ticket.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/handler/ticket/ticket.go b/handler/ticket/ticket.go index 6ba89ec..fe6d514 100644 --- a/handler/ticket/ticket.go +++ b/handler/ticket/ticket.go @@ -11,9 +11,9 @@ import ( func init() { // Register the handler with the server - handler.RegisterHandler("提单", newTicket, constants.LEVEL_USER) + handler.RegisterHandler("提单 ", newTicket, constants.LEVEL_USER) handler.RegisterHelpInform("提单 [内容]", "ticket", "提单") - handler.RegisterHandler("结单", doneTicket, constants.LEVEL_ROOT) + handler.RegisterHandler("结单 ", doneTicket, constants.LEVEL_ROOT) handler.RegisterHelpInform("结单 [id]", "ticket", "结单") }