//打包环境
export enum Env{
    Server,     //服务器模式
    H5,         //H5模式
}

//当前环境
export const EnvCurrent:Env = Env.H5;