Files
ignis_app/lib/app/build_info.dart
2026-04-23 20:57:15 +07:00

13 lines
290 B
Dart

class BuildInfo {
static const String date = String.fromEnvironment(
'IGNIS_BUILD_DATE',
defaultValue: 'dev',
);
static const String gitSha = String.fromEnvironment(
'IGNIS_GIT_SHA',
defaultValue: 'local',
);
static String get label => 'build $date - $gitSha';
}