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.
19 lines
613 B
19 lines
613 B
import 'package:core/modularity/index.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:notifications/proxy/index.dart';
|
|
import 'package:notifications/services/index.dart';
|
|
|
|
import './pages/route.notification.dart';
|
|
|
|
class NotificationsModule extends Module {
|
|
@override
|
|
List<GetPage> get routes => NotificationRoute.routes;
|
|
|
|
@override
|
|
void configureServices() {
|
|
inject<NotificationsModule>(this);
|
|
lazyInject((injector) => NotificationService(injector));
|
|
lazyInject((injector) => MyNotificationAppService(injector));
|
|
lazyInject((injector) => NotificationStateService(injector));
|
|
}
|
|
}
|