From 2f57766b032aba5dd918321f0e547466c7fb06ed Mon Sep 17 00:00:00 2001 From: namhq1989 Date: Tue, 27 Dec 2022 17:06:49 +0700 Subject: [PATCH] add server shared --- constant.go | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/constant.go b/constant.go index 2fe638e..3864663 100644 --- a/constant.go +++ b/constant.go @@ -17,13 +17,15 @@ var AllStreams = struct { } var AllServers = struct { - App string - Admin string - SMS string - Chat string + Shared string + App string + Admin string + SMS string + Chat string }{ - App: "app", - Admin: "admin", - SMS: "sms", - Chat: "chat", + Shared: "shared", + App: "app", + Admin: "admin", + SMS: "sms", + Chat: "chat", }