fix: update to spec
This commit is contained in:
parent
2898d272fb
commit
7c08579ecc
3 changed files with 4 additions and 1 deletions
|
@ -1,7 +1,8 @@
|
|||
use crate::package::identifier::PackageIdentifier;
|
||||
use crate::prelude::Arguments;
|
||||
|
||||
pub enum Command {
|
||||
Grab(PackageIdentifier), // grab a package from a remote source
|
||||
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,
|
||||
|
|
|
@ -5,6 +5,7 @@ use std::str::FromStr;
|
|||
use getopts::Options;
|
||||
use log::{info, SetLoggerError};
|
||||
|
||||
mod prelude;
|
||||
mod commands;
|
||||
mod package;
|
||||
|
||||
|
|
1
pkgr/src/prelude.rs
Normal file
1
pkgr/src/prelude.rs
Normal file
|
@ -0,0 +1 @@
|
|||
pub struct Arguments(Vec<String>);
|
Loading…
Reference in a new issue