You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
421 B
18 lines
421 B
package com.example.demo.config;
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
/**
|
|
* @program: GOLD
|
|
* @ClassName EnvConfig
|
|
* @description:
|
|
* @author: huangqizhen
|
|
* @create: 2025−06-29 13:55
|
|
* @Version 1.0
|
|
**/
|
|
@Configuration
|
|
public class EnvConfig {
|
|
public static final String ENV = "dev";
|
|
public static final String ENV_PROD = "prod";
|
|
public static final String ENV_TEST = "test";
|
|
}
|