Files
rog_app/lib/pages/entry/entry_binding.dart

13 lines
375 B
Dart
Raw Normal View History

import 'package:get/get.dart';
import 'package:gifunavi/pages/entry/entry_controller.dart';
import 'package:gifunavi/services/api_service.dart';
2024-09-02 21:25:19 +09:00
import '../index/index_controller.dart';
class EntryBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut<ApiService>(() => ApiService());
Get.lazyPut<EntryController>(() => EntryController());
}
}