mirror of
https://github.com/lifegpc/msg-tool.git
synced 2026-06-08 05:48:46 +08:00
Add support to unpack archive files
This commit is contained in:
@@ -132,12 +132,20 @@ pub enum Command {
|
||||
},
|
||||
/// Import to script
|
||||
Import(ImportArgs),
|
||||
/// Pack files to archive
|
||||
Pack {
|
||||
/// Input directory
|
||||
input: String,
|
||||
/// Output archive file
|
||||
output: Option<String>,
|
||||
},
|
||||
/// Unpack archive to directory
|
||||
Unpack {
|
||||
/// Input archive file
|
||||
input: String,
|
||||
/// Output directory
|
||||
output: Option<String>,
|
||||
},
|
||||
}
|
||||
|
||||
pub fn parse_args() -> Arg {
|
||||
|
||||
Reference in New Issue
Block a user