mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
10 lines
339 B
Rust
10 lines
339 B
Rust
use super::*;
|
|
|
|
pub fn cmds() -> impl IntoIterator<Item = Command> {
|
|
[
|
|
command!("import", Optional(Remainder(("url", OpaqueString))) => "import")
|
|
.help("Imports system information from a data file")
|
|
.flag(YES),
|
|
command!("export" => "export").help("Exports system information to a file"),
|
|
]
|
|
}
|