mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
11 lines
238 B
Dart
11 lines
238 B
Dart
import 'package:appflowy/startup/entry_point.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'startup/startup.dart';
|
|
|
|
Future<void> main() async {
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
|
|
await FlowyRunner.run(FlowyApp());
|
|
}
|