mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-04 01:24:09 +02:00
switch to minio for s3
This commit is contained in:
parent
b726358e60
commit
ce6f5c0d4c
5 changed files with 28 additions and 28 deletions
|
|
@ -13,10 +13,11 @@ use std::str::FromStr;
|
|||
use std::time::Duration;
|
||||
use tokio::time::{sleep, timeout};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq)]
|
||||
#[derive(Clone, Debug, Eq, PartialEq, Default)]
|
||||
#[allow(dead_code)]
|
||||
pub enum PhpVersion {
|
||||
Php82,
|
||||
#[default]
|
||||
Php81,
|
||||
Php80,
|
||||
Php74,
|
||||
|
|
@ -184,9 +185,3 @@ impl PhpVersion {
|
|||
.wrap_err("Timeout after 15 seconds")
|
||||
}
|
||||
}
|
||||
|
||||
impl Default for PhpVersion {
|
||||
fn default() -> Self {
|
||||
PhpVersion::Php81
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue