|
import 'package:absensi_qr/feature_student/schedule/presentation/schedule_controller.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
class ScheduleBinding extends Bindings {
|
|
@override
|
|
void dependencies() {
|
|
Get.lazyPut<ScheduleController>(() => ScheduleController());
|
|
}
|
|
|
|
} |