From e8314458ccdf4d3c68969b206cd29f2490fb6308 Mon Sep 17 00:00:00 2001 From: Ashelyn Rose Date: Wed, 19 Feb 2025 15:51:28 -0700 Subject: Refactor oauth into its own module --- app/src/state.rs | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 app/src/state.rs (limited to 'app/src/state.rs') diff --git a/app/src/state.rs b/app/src/state.rs deleted file mode 100644 index 44e74ed..0000000 --- a/app/src/state.rs +++ /dev/null @@ -1,46 +0,0 @@ -use tokio::sync::mpsc::Sender; - -#[derive(Clone)] -pub struct AppState { - pub preferences: (), - pub accounts: Vec, -} - -impl AppState { - pub fn default() -> Self { - Self { - preferences: (), - accounts: Vec::new(), - - } - } -} - -#[derive(Clone)] -pub struct Account { - pub server_domain: String, - pub handle_domain: Option, - pub client_credential: ClientCredential, - pub api_credential: ApiCredential, -} - -#[derive(Clone)] -pub struct ClientCredential { - pub client_name: String, - pub client_id: String, - pub client_secret: Option, -} - -#[derive(Clone)] -pub struct AuthCode (pub String); - -#[derive(Clone)] -pub enum ApiCredential { - None, - Pending(Sender), - Some { - token: String, - refresh: Option - } -} - -- cgit 1.4.1