s2n_quic_core/application/
mod.rs

1// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2// SPDX-License-Identifier: Apache-2.0
3
4pub mod error;
5#[cfg(feature = "alloc")]
6pub(crate) mod server_name;
7
8pub use error::Error;
9#[cfg(feature = "alloc")]
10pub use server_name::ServerName;