c2e2e0d8f2
Formatting-only. Runs the project formatter over the files authored/edited this session (host lib+tests, adapter item/squad_ext/squad_projection/mod + projection test). The intentionally-preserved dirty catalog.rs and pre-existing /club-era host drift beyond these files are out of scope.
15 lines
522 B
Rust
15 lines
522 B
Rust
//! FIFA 17 FUT (UTAS/RS4) wire → OpenFUT Core semantic mappings.
|
|
//!
|
|
//! Unlike [`crate::blaze`] (binary Blaze RPC), this is the JSON/HTTP FUT surface.
|
|
//! It currently holds the owned-player ("My Squad") search mapping; more UTAS
|
|
//! routes join it as the UTAS→Core migration proceeds. Nothing here opens a
|
|
//! socket — a Rust UTAS host wires it to Core later.
|
|
pub mod catalog;
|
|
pub mod club_response;
|
|
pub mod entities;
|
|
pub mod item;
|
|
pub mod owned_query;
|
|
pub mod squad;
|
|
pub mod squad_ext;
|
|
pub mod squad_projection;
|