From 793bb9509585c3f0903af68ea86b051dc39088e4 Mon Sep 17 00:00:00 2001 From: eatMoreApple <15055461510@163.com> Date: Sat, 24 Apr 2021 16:02:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0bot=20mode=20=E6=94=AF?= =?UTF-8?q?=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- global.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/global.go b/global.go index d1ae845..9b74fd7 100644 --- a/global.go +++ b/global.go @@ -70,3 +70,10 @@ const ( MALE = 1 FEMALE = 2 ) + +type mode string + +const ( + normal mode = "normal" + desk mode = "desk" +)