koprogo_api/lib.rs
1//! KoproGo API - Property Management Platform
2//!
3//! This crate provides the backend API for KoproGo, a Belgian property management platform.
4
5// Allow some clippy lints for cleaner code during active development
6#![allow(clippy::too_many_arguments)]
7#![allow(clippy::clone_on_copy)]
8#![allow(clippy::needless_borrows_for_generic_args)]
9#![allow(clippy::manual_range_contains)]
10#![allow(clippy::useless_format)]
11#![allow(clippy::collapsible_if)]
12#![allow(clippy::unnecessary_cast)]
13pub mod application;
14pub mod domain;
15pub mod infrastructure;