-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support FCM HTTP v1 (async only) (#4)
Due to the [deprecation of legacy FCM APIs](https://firebase.google.com/docs/cloud-messaging/migrate-v1) provides support for the new FCM HTTP v1 apis.
- Loading branch information
Showing
10 changed files
with
487 additions
and
497 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
from .fcmpushclient import FcmPushClient, FcmPushClientConfig, FcmPushClientRunState | ||
from .fcmregister import FcmRegisterConfig | ||
|
||
__all__ = ["FcmPushClientConfig", "FcmPushClient", "FcmPushClientRunState"] | ||
__all__ = [ | ||
"FcmPushClientConfig", | ||
"FcmPushClient", | ||
"FcmPushClientRunState", | ||
"FcmRegisterConfig", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.