rwadurian/frontend/mining-app/lib/core/config/environment.dart

16 lines
389 B
Dart

import 'package:flutter/foundation.dart';
class EnvironmentConfig {
// API 基础地址 - Kong 网关
static const String baseUrl = 'https://rwaapi.szaiai.com';
// 是否为调试模式
static bool get isDebug => kDebugMode;
// 是否显示调试横幅
static bool get showDebugBanner => kDebugMode;
// 是否启用日志
static bool get enableLogging => kDebugMode;
}