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

cn.meteor.common.launch.constants.EnvConstants Maven / Gradle / Ivy

package cn.meteor.common.launch.constants;// Copyright (C), Created on 2021-04-02

/**
 * 运行环境常量类
 *
 * @author ths
 * @since 1.0.0
 */
public interface EnvConstants {

	/** 开发环境 */
	String DEV = "dev";
	/** 测试环境 */
	String TEST = "test";
	/** 生产环境 */
	String PROD = "prod";
	/** 代码部署于 linux 上,工作默认为 mac 和 Windows */
	String OS_NAME_LINUX = "LINUX";
	/** 未知 */
	String UNKNOWN = "unknown";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy