2025-10-03 15:50:54 +00:00
|
|
|
use super::*;
|
2025-01-04 07:35:04 +09:00
|
|
|
|
2025-10-03 15:50:54 +00:00
|
|
|
pub fn cmds() -> impl Iterator<Item = Command> {
|
|
|
|
|
[
|
|
|
|
|
command!("import", Optional(("url", OpaqueStringRemainder)) => "import"),
|
|
|
|
|
command!("export" => "export"),
|
|
|
|
|
]
|
|
|
|
|
.into_iter()
|
|
|
|
|
}
|