15 lines
414 B
Java
15 lines
414 B
Java
package ru.soune.nocopy.configuration.file;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import org.springframework.boot.context.event.ApplicationReadyEvent;
|
|
import org.springframework.context.event.EventListener;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
@Component
|
|
@AllArgsConstructor
|
|
public class NoCopyInitializer {
|
|
|
|
@EventListener(ApplicationReadyEvent.class)
|
|
public void initializeOnStartup() {
|
|
}
|
|
} |