aboutsummaryrefslogtreecommitdiffstats
path: root/crates/api-core/src/auth/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/api-core/src/auth/mod.rs')
-rw-r--r--crates/api-core/src/auth/mod.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/crates/api-core/src/auth/mod.rs b/crates/api-core/src/auth/mod.rs
new file mode 100644
index 0000000..1045122
--- /dev/null
+++ b/crates/api-core/src/auth/mod.rs
@@ -0,0 +1,9 @@
+pub mod provider;
+
+pub struct AuthClientConfig {
+ pub client_id: String,
+ pub client_secret: String,
+ pub redirect_uri: String,
+ pub token_uri: String,
+ pub auth_url: String,
+}