Read minio instance secret key

This commit is contained in:
2023-05-06 10:58:18 +02:00
parent 547cc02800
commit 36aaf5fb4d
10 changed files with 65 additions and 8 deletions

6
src/constants.rs Normal file
View File

@@ -0,0 +1,6 @@
//! # 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";