Introduce the UpdateBuilder type along with some update operations

This commit is contained in:
Clément Renault 2020-10-25 18:32:01 +01:00
parent adacc7977d
commit b14cca2ad9
No known key found for this signature in database
GPG key ID: 92ADA4E935E71FA4
9 changed files with 382 additions and 39 deletions

5
src/update/mod.rs Normal file
View file

@ -0,0 +1,5 @@
mod update_builder;
mod update_store;
pub use self::update_builder::UpdateBuilder;
pub use self::update_store::UpdateStore;