natsio/js/consumer/selly.go

15 lines
484 B
Go
Raw Normal View History

2022-09-23 07:47:00 +00:00
package jsconsumer
// Selly ...
var Selly = struct {
2022-09-23 15:11:28 +00:00
PushNotification string
UpdateSellerAffiliateStatistic string
2022-09-23 16:32:23 +00:00
CheckAnDInsertCashflowBySeller string
2023-02-28 08:06:06 +00:00
SubscriberTopic string
2022-09-23 07:47:00 +00:00
}{
2022-09-23 15:11:28 +00:00
PushNotification: "PULL_PUSH_NOTIFICATION",
UpdateSellerAffiliateStatistic: "PULL_UPDATE_SELLER_AFFILIATE_STATISTIC",
2022-09-23 16:32:23 +00:00
CheckAnDInsertCashflowBySeller: "PULL_CHECK_AND_INSERT_CASHFLOW_BY_SELLER",
2023-02-28 08:06:06 +00:00
SubscriberTopic: "PULL_SUBSCRIBER_TOPIC",
2022-09-23 07:47:00 +00:00
}