natsio/js/subject/selly.go

22 lines
559 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 {
2022-09-23 15:11:28 +00:00
PushNotification string
UpdateSellerAffiliateStatistic string
2022-09-23 16:32:23 +00:00
CheckAnDInsertCashflowBySeller string
2022-09-23 04:17:03 +00:00
}{
2022-09-23 15:11:28 +00:00
PushNotification: getSellyValue("push_notifications"),
UpdateSellerAffiliateStatistic: getSellyValue("update_seller_affiliate_statistic"),
2022-09-23 16:32:23 +00:00
CheckAnDInsertCashflowBySeller: getSellyValue("check_and_insert_cashflow_statistic"),
2022-09-23 04:17:03 +00:00
}