Pierre Hubert
e2598d7509
Some checks reported errors
continuous-integration/drone/push Build was killed
Add base operator logic Reviewed-on: #1
12 lines
422 B
Rust
12 lines
422 B
Rust
//! # Application constants
|
|
pub const SECRET_MINIO_INSTANCE_ACCESS_KEY: &str = "accessKey";
|
|
pub const SECRET_MINIO_INSTANCE_SECRET_KEY: &str = "secretKey";
|
|
|
|
pub const SECRET_MINIO_BUCKET_ACCESS_KEY: &str = "accessKey";
|
|
pub const SECRET_MINIO_BUCKET_SECRET_KEY: &str = "secretKey";
|
|
|
|
pub const SECRET_MINIO_BUCKET_ACCESS_LEN: usize = 20;
|
|
pub const SECRET_MINIO_BUCKET_SECRET_LEN: usize = 35;
|
|
|
|
pub const MC_EXE: &str = "mc";
|