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.
12 lines
406 B
12 lines
406 B
import 'package:core/modularity/index.dart';
|
|
import 'package:core/services/auth.service.dart';
|
|
import 'package:oauth/services/index.dart';
|
|
import 'package:oauth_dio/oauth_dio.dart';
|
|
|
|
class OAuthModule extends Module {
|
|
@override
|
|
void configureServices() {
|
|
lazyInject<AuthService>((injector) => OAuthService(injector));
|
|
lazyInject<OAuthStorage>((injector) => OAuthStorageService(injector));
|
|
}
|
|
}
|