ForgeFlux/src/auth/application/port/out/forge/oauth_auth_req_uri.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

11 lines
227 B
Rust

use super::errors::*;
use url::Url;
pub trait OAuthAuthReqUri: Send + Sync {
fn oauth_auth_req_uri(
&self,
state: &str,
process_authorization_response_uri: &Url,
) -> OutForgePortResult<Url>;
}