scufflecloud_email/
lib.rs

1//! Email service for <https://scuffle.cloud/>.
2//!
3//! This service is only used internally.
4//!
5//! ## License
6//!
7//! This project is licensed under the [AGPL-3.0](./LICENSE.AGPL-3.0).
8//!
9//! `SPDX-License-Identifier: AGPL-3.0`
10#![cfg_attr(coverage_nightly, feature(coverage_attribute))]
11#![cfg_attr(docsrs, feature(doc_auto_cfg))]
12// #![deny(missing_docs)]
13#![deny(unsafe_code)]
14#![deny(unreachable_pub)]
15#![deny(clippy::mod_module_files)]
16// tonic::Status emits this warning
17#![allow(clippy::result_large_err)]
18
19mod aws_ses;
20mod email_builder;
21pub mod services;