opentalk-types-common 0.46.0

Common types and traits for OpenTalk crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-FileCopyrightText: OpenTalk GmbH <mail@opentalk.eu>
//
// SPDX-License-Identifier: EUPL-1.2

//! Data types for handling authentication.

mod bearer_token;
mod resumption_token;
mod ticket_token;

pub use bearer_token::BearerToken;
pub use resumption_token::ResumptionToken;
pub use ticket_token::TicketToken;