mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-04 12:03:28 +00:00 
			
		
		
		
	* 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(),
 | 
						|
  );
 | 
						|
}
 |