opentalk_client_shared/authorization.rs
1// SPDX-FileCopyrightText: OpenTalk GmbH <mail@opentalk.eu>
2//
3// SPDX-License-Identifier: EUPL-1.2
4
5/// Trait for augmenting requests with authentication information
6pub trait Authorization: std::fmt::Debug {
7 /// Add authorization headers
8 fn apply_authorization_headers(&self, headers: &mut http::HeaderMap);
9}