20 lines
391 B
Java
20 lines
391 B
Java
1 year ago
|
package com.supervision.config;
|
||
|
|
||
|
import lombok.Data;
|
||
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||
|
import org.springframework.stereotype.Component;
|
||
|
|
||
|
@Data
|
||
|
@Component
|
||
|
@ConfigurationProperties(prefix = "minio")
|
||
|
public class MinioProperties {
|
||
|
|
||
|
private String url;
|
||
|
|
||
|
private String accessKey;
|
||
|
|
||
|
private String secretKey;
|
||
|
|
||
|
private String bucketName;
|
||
|
}
|