You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
402 B
13 lines
402 B
|
2 months ago
|
import 'package:get/get.dart';
|
||
|
2 weeks ago
|
import 'package:problem_check_system/app/core/repositories/auth_repository.dart';
|
||
|
|
import 'package:problem_check_system/app/features/auth/controllers/login_controller.dart';
|
||
|
2 months ago
|
|
||
|
|
class LoginBinding implements Bindings {
|
||
|
|
@override
|
||
|
|
void dependencies() {
|
||
|
|
Get.lazyPut<LoginController>(
|
||
|
|
() => LoginController(authRepository: Get.find<AuthRepository>()),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|