19 lines
475 B
Java
19 lines
475 B
Java
package com.docling.studio.config;
|
|
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
@Component
|
|
@ConfigurationProperties(prefix = "app.document-parser")
|
|
public class DocumentParserProperties {
|
|
|
|
private String baseUrl = "http://localhost:8000";
|
|
|
|
public String getBaseUrl() {
|
|
return baseUrl;
|
|
}
|
|
|
|
public void setBaseUrl(String baseUrl) {
|
|
this.baseUrl = baseUrl;
|
|
}
|
|
}
|