10 lines
309 B
Go
10 lines
309 B
Go
|
package pushkit
|
||
|
|
||
|
const (
|
||
|
PushMqTopic = "pusher.push.*"
|
||
|
PushNotificationMqTopic = "pusher.push.notification"
|
||
|
PushNotificationBatchMqTopic = "pusher.push.notification.batch"
|
||
|
PushEmailMqTopic = "pusher.push.email"
|
||
|
PushEmailBatchMqTopic = "pusher.push.email.batch"
|
||
|
)
|