summaryrefslogtreecommitdiff
path: root/src/oauth/mod.rs
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-06-09 16:43:16 -0600
committermo khan <mo@mokhan.ca>2025-06-09 16:43:16 -0600
commit2ef774d4c52b9fb0ae0d1717b7a3568b76bccf3d (patch)
treefde8c20a9333e68d7e798ec5936630375da2a1f9 /src/oauth/mod.rs
parentb39a50e3ec622294cc0b6f271f1996a89f1849d6 (diff)
refactor: split types into separate files
Diffstat (limited to 'src/oauth/mod.rs')
-rw-r--r--src/oauth/mod.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/oauth/mod.rs b/src/oauth/mod.rs
new file mode 100644
index 0000000..d6717c2
--- /dev/null
+++ b/src/oauth/mod.rs
@@ -0,0 +1,5 @@
+pub mod server;
+pub mod types;
+
+pub use server::OAuthServer;
+pub use types::{AuthCode, Claims, ErrorResponse, TokenResponse}; \ No newline at end of file