ForgeFlux/src/auth/application/services/process_authorization_response/mod.rs
2024-05-08 15:02:02 +05:30

12 lines
297 B
Rust

mod command;
pub mod errors;
mod service;
#[async_trait::async_trait]
pub trait ProcessAuthorizationResponseUserCase {
async fn process_authorization_response(
&self,
cmd: command::ProcessAuthorizationResponseCommand,
) -> errors::ProcessAuthorizationServiceResult<()>;
}