timetable/module-server/src/main/kotlin/de/twomartens/timetable/support/monitoring/actuator/Preparable.kt

8 lines
145 B
Kotlin

package de.twomartens.timetable.support.monitoring.actuator
import java.io.Closeable
fun interface Preparable {
fun prepare(): Closeable
}