[Update] add stream warehouse
This commit is contained in:
parent
1c0db7e67f
commit
e412b71bba
28
constant.go
28
constant.go
|
@ -11,6 +11,7 @@ var AllStreams = struct {
|
||||||
Chat string
|
Chat string
|
||||||
Product string
|
Product string
|
||||||
Supplier string
|
Supplier string
|
||||||
|
Warehouse string
|
||||||
}{
|
}{
|
||||||
Selly: "selly",
|
Selly: "selly",
|
||||||
User: "user",
|
User: "user",
|
||||||
|
@ -22,20 +23,23 @@ var AllStreams = struct {
|
||||||
Chat: "chat",
|
Chat: "chat",
|
||||||
Product: "product",
|
Product: "product",
|
||||||
Supplier: "supplier",
|
Supplier: "supplier",
|
||||||
|
Warehouse: "warehouse",
|
||||||
}
|
}
|
||||||
|
|
||||||
var AllServers = struct {
|
var AllServers = struct {
|
||||||
Shared string
|
Shared string
|
||||||
App string
|
App string
|
||||||
Admin string
|
Admin string
|
||||||
SMS string
|
SMS string
|
||||||
Chat string
|
Chat string
|
||||||
Supplier string
|
Supplier string
|
||||||
|
Warehouse string
|
||||||
}{
|
}{
|
||||||
Shared: "shared",
|
Shared: "shared",
|
||||||
App: "app",
|
App: "app",
|
||||||
Admin: "admin",
|
Admin: "admin",
|
||||||
SMS: "sms",
|
SMS: "sms",
|
||||||
Chat: "chat",
|
Chat: "chat",
|
||||||
Supplier: "supplier",
|
Supplier: "supplier",
|
||||||
|
Warehouse: "warehouse",
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue