AppFlowy/frontend/app_flowy/lib/startup/tasks/platform_service.dart

13 lines
328 B
Dart
Raw Normal View History

2021-12-04 22:24:32 +08:00
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();
}
}