first commit
This commit is contained in:
13
lib/app/bindings/petugas_mitra_binding.dart
Normal file
13
lib/app/bindings/petugas_mitra_binding.dart
Normal file
@ -0,0 +1,13 @@
|
||||
import 'package:get/get.dart';
|
||||
import '../data/providers/auth_provider.dart';
|
||||
import '../modules/petugas_mitra/controllers/petugas_mitra_dashboard_controller.dart';
|
||||
|
||||
class PetugasMitraBinding extends Bindings {
|
||||
@override
|
||||
void dependencies() {
|
||||
Get.lazyPut<AuthProvider>(() => AuthProvider());
|
||||
Get.lazyPut<PetugasMitraDashboardController>(
|
||||
() => PetugasMitraDashboardController(),
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user