another commit

This commit is contained in:
kicap1992
2022-06-08 06:03:46 +08:00
commit 330bfdeadb
60 changed files with 9627 additions and 0 deletions

View File

@ -0,0 +1,13 @@
// ignore_for_file: file_names
import 'package:get/get.dart';
import 'package:kurir/controller/after_login/kurir/profileController.dart';
class KurirProfileBinding extends Bindings {
// KurirProfileBinding() : super(autoInit: false);
@override
void dependencies() {
Get.lazyPut<KurirProfileController>(() => KurirProfileController());
}
}