初始化提交

This commit is contained in:
2025-09-23 16:23:15 +08:00
commit 877b18a70f
590 changed files with 53617 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import 'package:get/get.dart';
import '../controllers/kr_home_controller.dart';
class KRHomeBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut<KRHomeController>(
() => KRHomeController(),
);
Get.lazyPut<KRHomeController>(
() => KRHomeController(),
);
}
}