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
357 B
13 lines
357 B
import 'package:core/services/subscription.service.dart';
|
|
import 'package:core/tokens/index.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
import 'controller.dart';
|
|
|
|
class MainBinding extends Bindings {
|
|
@override
|
|
void dependencies() {
|
|
Get.lazyPut(() => MainController());
|
|
Get.lazyPut(() => SubscriptionService(), tag: NotificationTokens.consumer);
|
|
}
|
|
}
|