aboutsummaryrefslogtreecommitdiff
path: root/src/gen/file_and_mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/gen/file_and_mod.rs')
-rw-r--r--src/gen/file_and_mod.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gen/file_and_mod.rs b/src/gen/file_and_mod.rs
new file mode 100644
index 0000000..8862c53
--- /dev/null
+++ b/src/gen/file_and_mod.rs
@@ -0,0 +1,8 @@
+use crate::customize::Customize;
+use crate::gen::rust::rel_path::RustRelativePath;
+
+pub(crate) struct FileAndMod {
+ pub file: String,
+ pub relative_mod: RustRelativePath,
+ pub customize: Customize,
+}