mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
d96a1d8bd4
* feat: support importing database raw data * feat: verify import database test * test: fix test * ci: update integration test ci config * ci: codecov with os flag * ci: update docker command * ci: update docker command * ci: update docker command * ci: update docker command * test: add filter test
14 lines
269 B
Dart
14 lines
269 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(),
|
|
integrationEnv(),
|
|
);
|
|
}
|