initial skeleton
This commit is contained in:
parent
dc79fa2448
commit
71f89dde9c
60 changed files with 3480 additions and 0 deletions
10
crates/aim-core/src/domain/update.rs
Normal file
10
crates/aim-core/src/domain/update.rs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#[derive(Debug, Eq, PartialEq)]
|
||||
pub struct UpdatePlan {
|
||||
pub items: Vec<PlannedUpdate>,
|
||||
}
|
||||
|
||||
#[derive(Debug, Eq, PartialEq)]
|
||||
pub struct PlannedUpdate {
|
||||
pub stable_id: String,
|
||||
pub display_name: String,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue