ForgeFlux/src/auth/application/port/out/db/get_state.rs
Aravinth Manivannan 44512bc616
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
chore: mv src/forge/auth src/auth
2024-05-06 10:31:38 +05:30

8 lines
233 B
Rust

use super::errors::*;
#[async_trait::async_trait]
pub trait GetOAuthState: Send + Sync {
/// Get OAuth state code generated during authorization request
async fn get_oauth_state(&self, state: &str) -> OutDBPortResult<()>;
}