file-transformer-docx/core/src/main/java/org/opencdmp/filetransformer/docx/service/pdf/PdfServiceConfiguration.java

10 lines
317 B
Java
Raw Normal View History

2024-04-26 15:26:11 +02:00
package org.opencdmp.filetransformer.docx.service.pdf;
2023-12-18 10:05:27 +01:00
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Configuration;
@Configuration
2024-03-06 15:34:34 +01:00
@EnableConfigurationProperties({PdfServiceProperties.class})
public class PdfServiceConfiguration {
2023-12-18 10:05:27 +01:00
}