natsio/subject/config.go

38 lines
1017 B
Go
Raw Normal View History

2022-08-26 08:56:36 +00:00
package subject
var prefixes = struct {
2022-11-23 02:52:48 +00:00
AuthSMS string
Selly string
SupplierPermission string
Withdraw string
2022-11-08 06:53:52 +00:00
Communication string
Order string
News string
Warehouse string
Location string
Bank string
Supplier string
Seller string
SupplierUser string
SupplierRole string
2022-11-23 02:52:48 +00:00
SocialPost string
Staff string
2022-08-26 08:56:36 +00:00
}{
2022-11-23 02:52:48 +00:00
AuthSMS: "auth_sms",
Selly: "selly",
SupplierPermission: "supplier_permission",
Withdraw: "withdraw",
2022-11-08 06:53:52 +00:00
Communication: "communication",
Order: "order",
News: "news",
Warehouse: "warehouse",
Location: "location",
Supplier: "supplier",
Bank: "bank",
Seller: "seller",
SupplierUser: "supplier_user",
SupplierRole: "supplier_role",
2022-11-23 02:52:48 +00:00
SocialPost: "social_post",
Staff: "staff",
2022-08-26 08:56:36 +00:00
}