Files
penyaluran_app/lib/app/modules/profile/bindings/profile_binding.dart
2025-03-11 12:44:32 +07:00

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(),
);
}
}