package de.werkbaum.service import org.springframework.context.annotation.Bean import org.springframework.context.annotation.Configuration import java.time.Clock @Configuration class ClockConfiguration { @Bean fun clock(): Clock = Clock.systemUTC() }