1 2 3 4 5 6 7 8 9 10
pub mod animation; pub mod video; pub use animation::*; pub use video::*; pub fn generate_json_schema() -> serde_json::Value { let schema = schemars::schema_for!(video::Scenario); serde_json::to_value(schema).unwrap() }