natsio/constant.go

34 lines
535 B
Go
Raw Normal View History

2022-12-04 15:33:10 +00:00
package natsio
2022-12-16 09:58:35 +00:00
var AllStreams = struct {
2022-12-16 03:47:20 +00:00
Selly string
User string
HelpCenter string
Order string
Withdrawal string
Jobs string
2023-01-05 13:57:52 +00:00
Auth string
2022-12-04 15:33:10 +00:00
}{
2022-12-16 03:47:20 +00:00
Selly: "selly",
User: "user",
HelpCenter: "help_center",
Order: "order",
Withdrawal: "withdrawal",
Jobs: "jobs",
2023-01-05 13:57:52 +00:00
Auth: "auth",
2022-12-04 15:33:10 +00:00
}
2022-12-05 03:19:37 +00:00
2022-12-16 09:58:35 +00:00
var AllServers = struct {
2022-12-27 10:06:49 +00:00
Shared string
App string
Admin string
SMS string
Chat string
2022-12-05 03:19:37 +00:00
}{
2022-12-27 10:06:49 +00:00
Shared: "shared",
App: "app",
Admin: "admin",
SMS: "sms",
Chat: "chat",
2022-12-05 03:19:37 +00:00
}