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
393 B
13 lines
393 B
2 weeks ago
|
import 'package:get/get.dart';
|
||
|
import 'package:problem_check_system/data/repositories/auth_repository.dart';
|
||
|
import 'package:problem_check_system/modules/auth/controllers/login_controller.dart';
|
||
|
|
||
|
class LoginBinding implements Bindings {
|
||
|
@override
|
||
|
void dependencies() {
|
||
|
Get.lazyPut<LoginController>(
|
||
|
() => LoginController(authRepository: Get.find<AuthRepository>()),
|
||
|
);
|
||
|
}
|
||
|
}
|