You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
355 B
Rust
16 lines
355 B
Rust
//! AI Weekly Synth backend library crate.
|
|
//!
|
|
//! Re-exports all modules so that integration tests can access them.
|
|
//! The binary entry point (`main.rs`) uses this crate as a dependency.
|
|
|
|
pub mod app_state;
|
|
pub mod config;
|
|
pub mod db;
|
|
pub mod errors;
|
|
pub mod handlers;
|
|
pub mod middleware;
|
|
pub mod models;
|
|
pub mod router;
|
|
pub mod services;
|
|
pub mod util;
|