natsio/subject/config.go

26 lines
549 B
Go
Raw Normal View History

2022-08-26 08:56:36 +00:00
package subject
var prefixes = struct {
Communication string
Order string
2022-09-20 03:28:35 +00:00
News string
2022-08-26 08:56:36 +00:00
Warehouse string
2022-08-26 10:36:02 +00:00
Location string
2022-10-11 07:17:07 +00:00
Bank string
2022-08-26 10:36:02 +00:00
Supplier string
2022-09-15 07:09:54 +00:00
Seller string
2022-10-25 08:27:05 +00:00
SupplierUser string
2022-10-28 02:31:39 +00:00
SupplierRole string
2022-08-26 08:56:36 +00:00
}{
Communication: "communication",
Order: "order",
2022-09-20 03:28:35 +00:00
News: "news",
2022-08-26 08:56:36 +00:00
Warehouse: "warehouse",
2022-08-26 10:36:02 +00:00
Location: "location",
Supplier: "supplier",
2022-10-11 07:17:07 +00:00
Bank: "bank",
2022-09-15 07:09:54 +00:00
Seller: "seller",
2022-10-25 08:27:05 +00:00
SupplierUser: "supplier_user",
2022-10-28 02:31:39 +00:00
SupplierRole: "supplier_role",
2022-08-26 08:56:36 +00:00
}