package com.arms.config;

import lombok.Getter;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Profile;

@Configuration
@Getter
@Profile("dev")
@RefreshScope
public class DevDurationConfig {

    @Value("${dev-discovery-duration-time}")
    private long discoveryDurationTime;



}
