ForgeFlux/src/auth/application/port/input/ui/login.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
234 B
Rust

use super::errors::*;
use actix_web::HttpResponse;
#[async_trait::async_trait]
pub trait RequestAuthorizationInterface: Send + Sync {
async fn request_oauth_authorization(&self, forge_name: String) -> InUIResult<HttpResponse>;
}