mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-26 02:21:39 +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();
|
||
|
}
|