Files
moodiary/lib/config/env.dart
2025-04-13 21:36:41 +08:00

9 lines
172 B
Dart

class Env {
static String appMode = const String.fromEnvironment(
'APP_MODE',
defaultValue: 'release',
);
static bool get debugMode => appMode == 'debug';
}