package com.eksad.masterdata.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.env.Environment;

@Configuration
public class SwaggerConfig {
    @Bean
    public boolean disableSwaggerInProd(Environment env) {
        return !env.acceptsProfiles("dev"); // Enable only in 'dev' profile
    }
}