42 lines
943 B
Go
42 lines
943 B
Go
package subject
|
|
|
|
var prefixes = struct {
|
|
Communication string
|
|
Order string
|
|
News string
|
|
Warehouse string
|
|
Location string
|
|
Bank string
|
|
Supplier string
|
|
Seller string
|
|
SupplierUser string
|
|
SupplierRole string
|
|
SocialPost string
|
|
Staff string
|
|
Segment string
|
|
Product string
|
|
Queue string
|
|
Campaign string
|
|
Affiliate string
|
|
Socket string
|
|
}{
|
|
Communication: "communication",
|
|
Order: "order",
|
|
News: "news",
|
|
Warehouse: "warehouse",
|
|
Location: "location",
|
|
Supplier: "supplier",
|
|
Bank: "bank",
|
|
Seller: "seller",
|
|
SupplierUser: "supplier_user",
|
|
SupplierRole: "supplier_role",
|
|
SocialPost: "social_post",
|
|
Staff: "staff",
|
|
Segment: "segment",
|
|
Product: "product",
|
|
Queue: "queue",
|
|
Campaign: "campaign",
|
|
Affiliate: "affiliate",
|
|
Socket: "socket",
|
|
}
|