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