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