1ffe0ffa9f
Offline Ultimate Team backend — game-independent REST API. - 19 API endpoints: auth, profiles, clubs, cards, packs, squads, objectives, SBCs, match rewards, NPC market, statistics - Axum + SQLite + SQLx with full migrations - Weighted pack generator, SBC validation engine - JSON-driven mod data (cards, packs, objectives, SBCs) - 5 integration tests passing Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
13 lines
192 B
Rust
13 lines
192 B
Rust
pub mod auth;
|
|
pub mod cards;
|
|
pub mod club;
|
|
pub mod health;
|
|
pub mod market;
|
|
pub mod matches;
|
|
pub mod objectives;
|
|
pub mod packs;
|
|
pub mod profile;
|
|
pub mod sbc;
|
|
pub mod squad;
|
|
pub mod statistics;
|