mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-16 21:00:48 +00:00
14 lines
332 B
Dart
14 lines
332 B
Dart
import 'package:appflowy/startup/startup.dart';
|
|
import 'package:appflowy_backend/log.dart';
|
|
|
|
class RecentServiceTask extends LaunchTask {
|
|
const RecentServiceTask();
|
|
|
|
@override
|
|
Future<void> initialize(LaunchContext context) async {
|
|
await super.initialize(context);
|
|
|
|
Log.info('[CachedRecentService] Initialized');
|
|
}
|
|
}
|