cedros-login-server 0.0.25

Authentication server for cedros-login with email/password, Google OAuth, and Solana wallet sign-in
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Organization handlers

mod create;
mod delete;
mod get;
mod list;
mod switch;
mod update;

pub use create::create_org;
pub use delete::delete_org;
pub use get::get_org;
pub use list::list_orgs;
pub use switch::switch_org;
pub use update::update_org;