redact_api/lib.rs
1// Copyright (c) 2026 Censgate LLC.
2// Licensed under the Business Source License 1.1 (BUSL-1.1).
3// See the LICENSE file in the project root for license details,
4// including the Additional Use Grant, Change Date, and Change License.
5
6pub mod handlers;
7pub mod models;
8pub mod routes;
9pub mod server;
10
11pub use server::ApiServer;