Skip to content
Snippets Groups Projects
Verified Commit e778512f authored by nfontrod's avatar nfontrod
Browse files

src/push.rs src/main.rs: move src/compress.rs to src/push.rs

parent 54a151ed
Branches
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ use configt::PartialPrune; ...@@ -7,7 +7,7 @@ use configt::PartialPrune;
mod checkout; mod checkout;
mod commit; mod commit;
mod compact; mod compact;
mod compress; mod push;
mod config_structure; mod config_structure;
mod configt; mod configt;
mod create_hooks; mod create_hooks;
...@@ -385,7 +385,7 @@ fn main() { ...@@ -385,7 +385,7 @@ fn main() {
Remote::Rm(e) => remote::remove_config(&e.key, e.global), Remote::Rm(e) => remote::remove_config(&e.key, e.global),
}, },
Commands::Push(p) => { Commands::Push(p) => {
compress::push(&p.key); push::push(&p.key);
} }
} }
} }
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment