13 lines
375 B
Dart
13 lines
375 B
Dart
import 'package:get/get.dart';
|
|
import 'package:gifunavi/pages/entry/entry_controller.dart';
|
|
import 'package:gifunavi/services/api_service.dart';
|
|
|
|
import '../index/index_controller.dart';
|
|
|
|
class EntryBinding extends Bindings {
|
|
@override
|
|
void dependencies() {
|
|
Get.lazyPut<ApiService>(() => ApiService());
|
|
Get.lazyPut<EntryController>(() => EntryController());
|
|
}
|
|
} |