AppFlowy/frontend/app_flowy/lib/startup/tasks/platform_service.dart
2022-02-20 16:12:43 +08:00

13 lines
333 B
Dart

import 'package:app_flowy/user/infrastructure/network_monitor.dart';
import '../startup.dart';
class InitPlatformServiceTask extends LaunchTask {
@override
LaunchTaskType get type => LaunchTaskType.dataProcessing;
@override
Future<void> initialize(LaunchContext context) async {
getIt<NetworkListener>().start();
}
}