mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-23 21:13:35 +00:00
12 lines
281 B
Dart
12 lines
281 B
Dart
import 'package:cherrypick/cherrypick.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:postly/app.dart';
|
|
import 'di/app_module.dart';
|
|
|
|
void main() {
|
|
final scope = CherryPick.openRootScope();
|
|
scope.installModules([$AppModule()]);
|
|
|
|
runApp(MyApp(scope: scope));
|
|
}
|