fix: rename PatcherService to PatcherAPI.

This commit is contained in:
Alberto Ponces
2022-08-09 01:20:50 +01:00
parent 33fb2a81b5
commit 7c7a7e0355
6 changed files with 9 additions and 9 deletions

View File

@ -13,6 +13,6 @@ import 'package:stacked_services/stacked_services.dart';
MaterialRoute(page: PatchesSelectorView),
], dependencies: [
LazySingleton(classType: NavigationService),
LazySingleton(classType: PatcherService),
LazySingleton(classType: PatcherAPI),
])
class AppSetup {}

View File

@ -26,7 +26,7 @@ Future<void> setupLocator(
// Register dependencies
locator.registerLazySingleton(() => NavigationService());
locator.registerLazySingleton(() => PatcherService());
locator.registerLazySingleton(() => PatcherAPI());
locator.registerLazySingleton(() => PatcherViewModel());
locator.registerLazySingleton(() => AppSelectorViewModel());
locator.registerLazySingleton(() => PatchesSelectorViewModel());