wahlrecht/module-server/src/main/java/de/twomartens/template/monitoring/actuator/Preparable.java

11 lines
158 B
Java
Raw Normal View History

2023-07-01 21:49:36 +02:00
package de.twomartens.template.monitoring.actuator;
import java.io.Closeable;
@FunctionalInterface
public interface Preparable {
Closeable prepare();
}