summaryrefslogtreecommitdiff
path: root/src/cmds/out/mappings_pretty.rs
blob: e0fa58c69d6dd3fcc26f2a826de6f785262f4043 (plain)
1
2
3
4
5
6
7
use just_enough_vcs::system::sheet_system::mapping::LocalMapping;
use serde::Serialize;

#[derive(Serialize)]
pub struct JVMappingsPrettyOutput {
    pub mappings: Vec<LocalMapping>,
}