Files
gameyfin/src/main/kotlin/de/grimsi/gameyfin/system/SystemService.kt
T
grimsi 96c89662ec Refine error handling in UI
Implement SystemEndpoint
2024-06-08 14:49:13 +02:00

13 lines
292 B
Kotlin

package de.grimsi.gameyfin.system
import org.springframework.cloud.context.restart.RestartEndpoint
import org.springframework.stereotype.Service
@Service
class SystemService(
private val restartEndpoint: RestartEndpoint,
) {
fun restart() {
restartEndpoint.restart()
}
}