All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.thebund1st.daming.boot.time.TimeConfiguration Maven / Gradle / Ivy

package com.thebund1st.daming.boot.time;

import com.thebund1st.daming.time.Clock;
import lombok.RequiredArgsConstructor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@RequiredArgsConstructor
@Configuration
public class TimeConfiguration {

    @Bean
    public Clock clock() {
        return new Clock();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy