Skip to main content

shield_workos/
lib.rs

1mod actions;
2mod client;
3mod method;
4mod options;
5mod provider;
6
7pub use method::*;
8pub use options::*;
9
10#[doc(no_inline)]
11pub use workos::{
12    ApiKey as WorkosApiKey, WorkOs as Workos, WorkOsBuilder as WorkosBuilder,
13    user_management::OauthProvider as WorkosOauthProvider,
14};
15
16// TODO: Support both AuthKit method and self hosted method.