hi-client/lib/app/modules/kr_splash/bindings/kr_splash_binding.dart
2025-10-13 18:08:02 +08:00

11 lines
244 B
Dart
Executable File

import 'package:get/get.dart';
import '../controllers/kr_splash_controller.dart';
class KRSplashBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut<KRSplashController>(
() => KRSplashController(),
);
}
}