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