• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 use crate::customize::Customize;
2 use crate::gen::rust::rel_path::RustRelativePath;
3 
4 pub(crate) struct FileAndMod {
5     pub file: String,
6     pub relative_mod: RustRelativePath,
7     pub customize: Customize,
8 }
9