PluralKit/crates/command_definitions/src/import_export.rs

11 lines
240 B
Rust
Raw Normal View History

use super::*;
pub fn cmds() -> impl Iterator<Item = Command> {
[
command!("import", Optional(("url", OpaqueStringRemainder)) => "import")
2025-10-08 04:29:48 +00:00
.flag(YES),
command!("export" => "export"),
]
.into_iter()
}