wayclip-core 0.1.2

Core module for the Wayclip ecosystem: models, settings, and methods for App
Documentation
1
2
3
4
5
6
7
8
9
/// `clips` module is responsible for containing all methods and operations related to managing
/// local and hosted clips. This includes uploading, trimming, deleting and more
pub mod clips;
/// `os_keyring` module is primarily used internally to allow for safekeeping of the user's
/// `jwt_token` and `refresh_token` once logged into their Wayclip account
pub mod os_keyring;
/// `users` module is used for handling user-related actions. These actions are quite limited, but
/// they usually directly interact with the UsersHttpClient
pub mod users;