PluralKit/crates/command_definitions/src/import_export.rs

9 lines
216 B
Rust
Raw Normal View History

use super::*;
pub fn cmds() -> impl IntoIterator<Item = Command> {
[
command!("import", Optional(Remainder(("url", OpaqueString))) => "import").flag(YES),
command!("export" => "export"),
]
}