// Copyright AGNTCY Contributors (https://github.com/agntcy)
// SPDX-License-Identifier: Apache-2.0
pub mod basic;
pub mod bearer;
use thiserror::Error;
#[derive(Error, Debug)]
pub enum AuthError {
#[error("config error: {0}")]
ConfigError(String),
}
pub trait ClientAuthenticator {
// associated types
type ClientLayer;
fn get_client_layer(&self) -> Result<Self::ClientLayer, AuthError>;
}
pub trait ServerAuthenticator<Response> {
// associated types
type ServerLayer;
fn get_server_layer(&self) -> Result<Self::ServerLayer, AuthError>;
}