2025-09-16 15:47:35 +03:30
|
|
|
import 'package:rasadyar_chicken/presentation/pages/common/profile/logic.dart';
|
|
|
|
|
import 'package:rasadyar_core/core.dart';
|
|
|
|
|
|
|
|
|
|
class GlobalBinding extends Bindings {
|
|
|
|
|
@override
|
|
|
|
|
void dependencies() {
|
2025-09-25 17:25:55 +03:30
|
|
|
Get.lazyPut(() => BaseLogic(), fenix: true);
|
2025-09-16 15:47:35 +03:30
|
|
|
Get.lazyPut(() => ProfileLogic(), fenix: true);
|
2025-09-24 16:24:45 +03:30
|
|
|
|
2025-09-16 15:47:35 +03:30
|
|
|
//root logics
|
|
|
|
|
}
|
|
|
|
|
}
|