func appSecret(c common.Context) string {
	if env.IsLocal() {
		return integrations.PusherDevSecret
	} else if env.IsProd(c) {
		return integrations.PusherProdSecret
	}
	return integrations.PusherStagingSecret
}
func AppKey(c common.Context) string {
	if env.IsLocal() {
		return integrations.PusherDevKey
	} else if env.IsProd(c) {
		return integrations.PusherProdKey
	}
	return integrations.PusherStagingKey
}
func appId(c common.Context) int {
	if env.IsLocal() {
		return integrations.PusherDevAppId
	} else if env.IsProd(c) {
		return integrations.PusherProdAppId
	}
	return integrations.PusherStagingAppId
}