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

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