Add folders and files for field trip and tracking functions

This commit is contained in:
2025-10-05 14:34:46 +02:00
parent cb94aa042a
commit e986cccdd6
6 changed files with 49 additions and 0 deletions
@@ -0,0 +1,9 @@
import 'package:get/get.dart';
import 'package:terepi_seged/pages/field_trip/presentations/controllers/field_trip_controller.dart';
class HomeBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut(() => FieldTripController());
}
}