chore: Mostly finished s3 config

This commit is contained in:
quexeky
2026-01-20 08:31:45 +11:00
parent 6e21e40648
commit 85b2e65b5f
12 changed files with 775 additions and 820 deletions
+2 -3
View File
@@ -28,9 +28,9 @@ pub enum Commands {
}
#[derive(Args)]
pub struct UploadInfo {
/// Sets
/// Identifies the specific upload style that will be used for the set depot
pub upload_style: UploadStyle,
/// Path of new version
/// Relative path to new version files
#[arg(short, long)]
pub path: PathBuf,
/// ID of game to attach to
@@ -44,5 +44,4 @@ pub struct UploadInfo {
#[derive(ValueEnum, Copy, Clone, Debug, PartialEq, Eq)]
pub enum UploadStyle {
S3,
Nginx,
}