12 lines
389 B
Go
12 lines
389 B
Go
package localnotifications
|
|
|
|
const (
|
|
CategoryTransaction PushCategory = "transaction"
|
|
CategoryMessage PushCategory = "newMessage"
|
|
CategoryGroupInvite PushCategory = "groupInvite"
|
|
CategoryCommunityRequestToJoin = "communityRequestToJoin"
|
|
|
|
TypeTransaction NotificationType = "transaction"
|
|
TypeMessage NotificationType = "message"
|
|
)
|