11 lines
341 B
Rust
11 lines
341 B
Rust
// Library root - clean organized module structure
|
|||
|
|
// All modules organized into logical folders
|
||
|
|
|
||
|
|
// ============================================================================
|
||
|
|
// Core Framework
|
||
|
|
// ============================================================================
|
||
|
|
pub mod app;
|
||
|
|
pub mod bootstrap;
|
||
|
|
pub mod modules;
|
||
|
|
pub mod shared;
|