Coverage for src / auth / services / __init__.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-03-18 14:29 -0300

1"""Servicos de negocio do modulo auth.""" 

2 

3from src.auth.services.auth_service import get_provider_config 

4from src.auth.services.auth_service import list_provider_configs 

5from src.auth.services.auth_service import login_with_provider 

6from src.auth.services.auth_service import to_public_provider_config 

7 

8__all__ = [ 

9 "list_provider_configs", 

10 "get_provider_config", 

11 "to_public_provider_config", 

12 "login_with_provider", 

13]