12 lines
279 B
Dart
12 lines
279 B
Dart
import 'package:get/get.dart';
|
|
import 'package:penyaluran_app/app/modules/profile/controllers/profile_controller.dart';
|
|
|
|
class ProfileBinding extends Bindings {
|
|
@override
|
|
void dependencies() {
|
|
Get.lazyPut<ProfileController>(
|
|
() => ProfileController(),
|
|
);
|
|
}
|
|
}
|