mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-09-01 09:44:07 +00:00
24 lines
951 B
Dart
24 lines
951 B
Dart
import 'package:get_it/get_it.dart';
|
|
import 'package:twonly/src/database/twonly.db.dart';
|
|
import 'package:twonly/src/services/api/api.service.dart';
|
|
import 'package:twonly/src/services/news.service.dart';
|
|
import 'package:twonly/src/services/user.service.dart';
|
|
|
|
export 'package:twonly/core/bridge/api.dart';
|
|
export 'package:twonly/src/model/protobuf/api/websocket/error.pb.dart';
|
|
export 'package:twonly/src/services/api/rust_api_result.dart';
|
|
|
|
final GetIt locator = GetIt.instance;
|
|
|
|
void setupLocator() {
|
|
locator
|
|
..registerLazySingleton<UserService>(UserService.new)
|
|
..registerLazySingleton<ApiService>(ApiService.new)
|
|
..registerLazySingleton<TwonlyDB>(TwonlyDB.new)
|
|
..registerLazySingleton<NewsService>(NewsService.new);
|
|
}
|
|
|
|
UserService get userService => locator<UserService>();
|
|
ApiService get apiService => locator<ApiService>();
|
|
TwonlyDB get twonlyDB => locator<TwonlyDB>();
|
|
NewsService get newsService => locator<NewsService>();
|