gjfgjfd
This commit is contained in:
parent
4135d1d108
commit
799806a823
53
src/lib.rs
53
src/lib.rs
@ -4,35 +4,34 @@
|
||||
|
||||
// Use modules
|
||||
mod modules {
|
||||
pub mod rustlang;
|
||||
pub mod rustlang;
|
||||
}
|
||||
|
||||
// Use subcommands
|
||||
// FIXME: Define modules for commands in `src/subcoms/<COMMAND>/rustlang/<COMMAND>/<COMMAND>();`
|
||||
pub mod subcoms {
|
||||
pub mod resolve {
|
||||
pub mod rustlang {
|
||||
pub mod resolve;
|
||||
}
|
||||
}
|
||||
pub mod remove {
|
||||
pub mod rustlang {
|
||||
pub mod remove;
|
||||
}
|
||||
}
|
||||
pub mod list {
|
||||
pub mod rustlang {
|
||||
pub mod list;
|
||||
}
|
||||
}
|
||||
pub mod deploy {
|
||||
pub mod rustlang {
|
||||
pub mod deploy;
|
||||
}
|
||||
}
|
||||
pub mod hijack {
|
||||
pub mod rustlang {
|
||||
pub mod hijack;
|
||||
}
|
||||
}
|
||||
pub mod resolve {
|
||||
pub mod rustlang {
|
||||
pub mod resolve;
|
||||
}
|
||||
}
|
||||
pub mod remove {
|
||||
pub mod rustlang {
|
||||
pub mod remove;
|
||||
}
|
||||
}
|
||||
pub mod deploy {
|
||||
pub mod rustlang {
|
||||
pub mod deploy;
|
||||
}
|
||||
}
|
||||
pub mod hijack {
|
||||
pub mod rustlang {
|
||||
pub mod hijack;
|
||||
}
|
||||
}
|
||||
pub mod list {
|
||||
pub mod rustlang {
|
||||
pub mod list;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
use zernit_logger::fixme;
|
||||
|
||||
pub fn hijack() {
|
||||
pub fn list() {
|
||||
fixme!("Output installed packages");
|
||||
unimplemented!("Listing is not yet implemented");
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
use zernit_logger::fixme;
|
||||
|
||||
pub fn resolve() {
|
||||
pub fn remove() {
|
||||
fixme!("Remove package from specified root");
|
||||
unimplemented!("Removal of packages from specified root is not yet supported");
|
||||
}
|
Loading…
Reference in New Issue
Block a user