12 lines
339 B
Dart
12 lines
339 B
Dart
import 'package:get/get.dart';
|
|
import 'package:quiz_app/data/providers/dio_client.dart';
|
|
import 'package:quiz_app/data/services/user_storage_service.dart';
|
|
|
|
class InitialBindings extends Bindings {
|
|
@override
|
|
void dependencies() {
|
|
Get.put<UserStorageService>(UserStorageService());
|
|
Get.putAsync(() => ApiClient().init());
|
|
}
|
|
}
|