Coverage for benefits/oauth/apps.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.6.4, created at 2024-10-21 19:31 +0000

1""" 

2The oauth application: Implements OAuth-based authentication 

3""" 

4 

5from django.apps import AppConfig 

6 

7 

8class OAuthAppConfig(AppConfig): 

9 name = "benefits.oauth" 

10 label = "oauth" 

11 verbose_name = "Benefits OAuth"