ayb 0.1.12

ayb makes it easy to create, host, and share embedded databases like SQLite and DuckDB
Documentation
mod confirm;
mod create_database;
mod database_details;
mod entity_details;
mod health;
mod list_database_permissions;
mod list_snapshots;
mod list_tokens;
mod log_in;
mod oauth_token;
mod query;
mod register;
mod restore_snapshot;
mod revoke_token;
mod share;
mod update_database;
mod update_profile;

pub use confirm::confirm as confirm_endpoint;
pub use create_database::create_database as create_database_endpoint;
pub use database_details::database_details as database_details_endpoint;
pub use entity_details::entity_details as entity_details_endpoint;
pub use health::health as health_endpoint;
pub use list_database_permissions::list_database_permissions as list_database_permissions_endpoint;
pub use list_snapshots::list_snapshots as list_snapshots_endpoint;
pub use list_tokens::list_tokens as list_tokens_endpoint;
pub use log_in::log_in as log_in_endpoint;
pub use oauth_token::oauth_token as oauth_token_endpoint;
pub use query::query as query_endpoint;
pub use register::register as register_endpoint;
pub use restore_snapshot::restore_snapshot as restore_snapshot_endpoint;
pub use revoke_token::revoke_token as revoke_token_endpoint;
pub use share::share as share_endpoint;
pub use update_database::update_database as update_database_endpoint;
pub use update_profile::update_profile as update_profile_endpoint;