12 lines
332 B
Dart
12 lines
332 B
Dart
import 'package:wyatt_app_template/bootstrap.dart';
|
|
import 'package:wyatt_app_template/core/flavors/flavor.dart';
|
|
import 'package:wyatt_app_template/presentation/features/app/app.dart';
|
|
|
|
void main(List<String> args) {
|
|
// Define environment
|
|
DevelopmentFlavor();
|
|
|
|
// Initialize environment and variables
|
|
bootstrap(App.new);
|
|
}
|