ClockConfig.java

package com.github.jenkaby.bikerental.shared.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import java.time.Clock;


@Configuration
public class ClockConfig {

    @Bean
    public Clock applicationClock() {
        return Clock.systemDefaultZone();
    }
}