rustbasic_core/lib.rs
1/* ---------------------------------------------------------
2 * 📑 LABEL: CONFIG MANAGER (config/mod.rs)
3 * File ini mengelola sub-modul konfigurasi dan re-export.
4 * --------------------------------------------------------- */
5
6pub mod app;
7pub mod session;
8pub mod database;
9pub mod server;
10pub mod logger;
11pub mod requests;
12pub mod responses;
13pub mod view;
14pub mod session_manager;
15pub mod errors;
16pub mod mail;
17pub mod seeder;
18pub mod cli;
19
20// Re-export Config agar bisa dipanggil dengan crate::Config
21pub use app::Config;
22pub use server::AppState;
23pub use requests::Request;
24pub use responses::ResponseHelper;
25
26// Re-export common Axum types
27pub use axum::{Router, middleware, response::IntoResponse};