diff options
Diffstat (limited to 'ofborg/tickborg/src/outpathdiff.rs')
| -rw-r--r-- | ofborg/tickborg/src/outpathdiff.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ofborg/tickborg/src/outpathdiff.rs b/ofborg/tickborg/src/outpathdiff.rs new file mode 100644 index 0000000000..511890d20d --- /dev/null +++ b/ofborg/tickborg/src/outpathdiff.rs @@ -0,0 +1,7 @@ +#[derive(Debug, PartialEq, Hash, Eq, Clone)] +pub struct PackageArch { + pub package: Package, + pub architecture: Architecture, +} +type Package = String; +type Architecture = String; |
