natsio/constant.go

46 lines
822 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
2023-03-01 10:36:01 +00:00
Chat string
2023-03-02 14:01:12 +00:00
Product string
2023-04-04 02:41:49 +00:00
Supplier string
2023-04-18 07:16:06 +00:00
Warehouse 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",
2023-03-01 10:36:01 +00:00
Chat: "chat",
2023-03-02 14:01:12 +00:00
Product: "product",
2023-04-04 02:41:49 +00:00
Supplier: "supplier",
2023-04-18 07:16:06 +00:00
Warehouse: "warehouse",
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 {
2023-04-18 07:16:06 +00:00
Shared string
App string
Admin string
SMS string
Chat string
Supplier string
Warehouse string
2022-12-05 03:19:37 +00:00
}{
2023-04-18 07:16:06 +00:00
Shared: "shared",
App: "app",
Admin: "admin",
SMS: "sms",
Chat: "chat",
Supplier: "supplier",
Warehouse: "warehouse",
2022-12-05 03:19:37 +00:00
}