ForgeFlux/src/auth/application/services/request_authorization/mod.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

14 lines
309 B
Rust

use url::Url;
pub mod command;
pub mod errors;
pub mod service;
#[async_trait::async_trait]
pub trait RequestAuthorizationUserCase: Send + Sync {
async fn request_authorization(
&self,
cmd: command::RequestAuthorizationCommand,
) -> errors::RequestAuthorizationServiceResult<Url>;
}