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.
17 lines
310 B
Java
17 lines
310 B
Java
package com.supervision.config;
|
|
|
|
import lombok.Data;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
|
|
@Data
|
|
@ConfigurationProperties(prefix = "vector.redis")
|
|
public class RedisVectorProperties {
|
|
|
|
private String uri;
|
|
|
|
private String indexName;
|
|
|
|
private String prefix;
|
|
|
|
}
|