PluralKit/crates/command_definitions/src/import_export.rs

10 lines
227 B
Rust
Raw Normal View History

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