natsio/js/subject/selly.go

24 lines
729 B
Go
Raw Normal View History

2022-09-23 04:17:03 +00:00
package jssubject
import (
"fmt"
)
// getSellyValue ...
func getSellyValue(val string) string {
return fmt.Sprintf("%s.%s.%s", root, prefixes.Selly, val)
}
// Selly ...
var Selly = struct {
2023-03-02 04:44:13 +00:00
PushNotification string
UpdateSellerAffiliateStatistic string
CheckAnDInsertCashflowBySeller string
UpdateSellerSavingCampaignStatistic string
2022-09-23 04:17:03 +00:00
}{
2023-03-02 04:44:13 +00:00
PushNotification: getSellyValue("push_notifications"),
UpdateSellerAffiliateStatistic: getSellyValue("update_seller_affiliate_statistic"),
CheckAnDInsertCashflowBySeller: getSellyValue("check_and_insert_cashflow_statistic"),
UpdateSellerSavingCampaignStatistic: getSellyValue("update_seller_saving_campaign_statistic"),
2022-09-23 04:17:03 +00:00
}