You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
391 B
Java
20 lines
391 B
Java
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;
|
|
}
|