| 1 | #include "register_platform_apis.h" |
|---|---|
| 2 | #include "android/api/api.h" |
| 3 | #include "ios/api/api.h" |
| 4 | #include "web/api/api.h" |
| 5 | |
| 6 | void register_platform_apis() { |
| 7 | register_android_api(); |
| 8 | register_ios_api(); |
| 9 | register_web_api(); |
| 10 | } |
| 11 | |
| 12 | void unregister_platform_apis() { |
| 13 | unregister_android_api(); |
| 14 | unregister_ios_api(); |
| 15 | unregister_web_api(); |
| 16 | } |
| 17 |