25 lines
418 B
Rust
25 lines
418 B
Rust
/*
|
|
* SPDX-FileCopyrightText: 2020 Stalwart Labs LLC <hello@stalw.art>
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-SEL
|
|
*/
|
|
|
|
pub mod api;
|
|
pub mod auth;
|
|
pub mod form;
|
|
pub mod request;
|
|
|
|
use common::Inner;
|
|
use std::sync::Arc;
|
|
|
|
#[derive(Clone)]
|
|
pub struct HttpSessionManager {
|
|
pub inner: Arc<Inner>,
|
|
}
|
|
|
|
impl HttpSessionManager {
|
|
pub fn new(inner: Arc<Inner>) -> Self {
|
|
Self { inner }
|
|
}
|
|
}
|