make subcommand configurable

This commit is contained in:
nora 2022-12-21 20:05:30 +01:00
parent a866667545
commit c0289c65f7
6 changed files with 97 additions and 39 deletions

View file

@ -1 +1,3 @@
pub fn unused() {}
pub(crate) fn unused() {
loop {}
}

View file

@ -1,10 +1,8 @@
fn unused() {
other::unused();
loop {}
}
fn main() {
unused();
loop {}
}
mod folder;
mod other;

View file

@ -1,3 +1,3 @@
pub fn unused() {
crate::folder::unused();
}
pub(crate) fn unused() {
loop {}
}