feat: type schedule and auth models
This commit is contained in:
12
lib/app/build_info.dart
Normal file
12
lib/app/build_info.dart
Normal file
@@ -0,0 +1,12 @@
|
||||
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';
|
||||
}
|
||||
Reference in New Issue
Block a user