natsio/js/subject/selly.go

18 lines
281 B
Go

package jssubject
import (
"fmt"
)
// getSellyValue ...
func getSellyValue(val string) string {
return fmt.Sprintf("%s.%s.%s", root, prefixes.Selly, val)
}
// Selly ...
var Selly = struct {
PushNotification string
}{
PushNotification: getSellyValue("push_notifications"),
}