mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-31 18:15:09 +00:00 
			
		
		
		
	
		
			
	
	
		
			15 lines
		
	
	
		
			449 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
		
		
			
		
	
	
			15 lines
		
	
	
		
			449 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
|   | import 'package:appflowy/startup/startup.dart'; | ||
|  | import 'package:appflowy/workspace/application/recent/prelude.dart'; | ||
|  | import 'package:appflowy_backend/log.dart'; | ||
|  | 
 | ||
|  | class RecentServiceTask extends LaunchTask { | ||
|  |   const RecentServiceTask(); | ||
|  | 
 | ||
|  |   @override | ||
|  |   Future<void> initialize(LaunchContext context) async => | ||
|  |       Log.info('[CachedRecentService] Initialized'); | ||
|  | 
 | ||
|  |   @override | ||
|  |   Future<void> dispose() async => getIt<CachedRecentService>().dispose(); | ||
|  | } |