7 lines
120 B
Rust
7 lines
120 B
Rust
use clap::Command;
|
|
|
|
pub fn create() -> Command {
|
|
Command::new("push")
|
|
.about("Push changes on nextcloud")
|
|
}
|