natsio/subject/config.go

24 lines
489 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-20 07:32:32 +00:00
AuthSMS 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-20 07:32:32 +00:00
AuthSMS: "auth_sms",
2022-08-26 08:56:36 +00:00
}