8 lines
276 B
Rust
8 lines
276 B
Rust
|
use crate::package::identifier::PackageIdentifier;
|
||
|
|
||
|
pub enum Command {
|
||
|
Grab(PackageIdentifier), // grab a package from a remote source
|
||
|
Remove(PackageIdentifier), // remove a package from the local source
|
||
|
List, // list all packages in the local source
|
||
|
Update,
|
||
|
}
|