You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
369 B
Dart
12 lines
369 B
Dart
2 years ago
|
import 'package:get/get.dart';
|
||
|
import 'package:isekai_wiki/models/favorite_list.dart';
|
||
|
import 'package:isekai_wiki/models/history_list.dart';
|
||
|
|
||
|
class InitialBinding extends Bindings {
|
||
|
@override
|
||
|
void dependencies() {
|
||
|
Get.lazyPut<FavoriteListController>(() => FavoriteListController());
|
||
|
Get.lazyPut<HistoryListController>(() => HistoryListController());
|
||
|
}
|
||
|
}
|