AppFlowy/frontend/app_flowy/lib/startup/tasks/platform_service.dart
2022-02-19 23:19:33 +08:00

13 lines
328 B
Dart

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