packager/pkgr/src/commands/mod.rs
Didier c603c403b6
All checks were successful
/ check (push) Successful in 44s
fix: update to spec
2023-07-16 20:06:38 +02:00

9 lines
No EOL
324 B
Rust

use crate::package::identifier::PackageIdentifier;
use crate::prelude::Arguments;
pub enum Command {
Install(Arguments, PackageIdentifier), // install a package from a remote source
Remove(PackageIdentifier), // remove a package from the local source
List, // list all packages in the local source
Update,
}