18 lines
310 B
Rust
18 lines
310 B
Rust
/*
|
|
* SPDX-FileCopyrightText: 2020 Stalwart Labs LLC <hello@stalw.art>
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-SEL
|
|
*/
|
|
|
|
pub mod account;
|
|
pub mod cleanup;
|
|
pub mod http;
|
|
pub mod imap;
|
|
pub mod jmap;
|
|
pub mod pop3;
|
|
pub mod registry;
|
|
pub mod server;
|
|
pub mod smtp;
|
|
pub mod storage;
|
|
pub mod webdav;
|