mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-05 13:27:54 +00:00
9 lines
227 B
Rust
9 lines
227 B
Rust
use super::*;
|
|
|
|
pub fn cmds() -> impl Iterator<Item = Command> {
|
|
[
|
|
command!("import", Optional(("url", OpaqueStringRemainder)) => "import").flag(YES),
|
|
command!("export" => "export"),
|
|
]
|
|
.into_iter()
|
|
}
|