summaryrefslogtreecommitdiffstats
path: root/crates/auth-service/src/client.rs
blob: 5aa4de0c1b29b4a02ed9105023b7cf62ed908772 (plain)
1
2
3
4
5
6
use oauth2::{EndpointNotSet, EndpointSet, basic::BasicClient};

pub mod discord;

pub type OauthClient =
    BasicClient<EndpointSet, EndpointNotSet, EndpointNotSet, EndpointNotSet, EndpointSet>;