summaryrefslogtreecommitdiffstats
path: root/src/auth/oauth.rs
diff options
context:
space:
mode:
authorLibravatar bigfoot547 <[email protected]>2025-01-30 23:22:48 -0600
committerLibravatar bigfoot547 <[email protected]>2025-01-30 23:22:48 -0600
commit9501ff8b400cd537a0f54a7aad780649ccb52974 (patch)
tree946011aa7a62ab023a6834b4d0af30a2b95991f4 /src/auth/oauth.rs
parentuser auth (diff)
remove dead oauth code
Diffstat (limited to 'src/auth/oauth.rs')
-rw-r--r--src/auth/oauth.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/auth/oauth.rs b/src/auth/oauth.rs
deleted file mode 100644
index 6d4da77..0000000
--- a/src/auth/oauth.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-pub mod device_code;
-mod refresh;
-
-pub struct AccessTokenWithRefresh {
- pub access_token: String,
- pub refresh_token: Option<String>
-}
-