Coverage for mcp_git_explorer/settings.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.8.0, created at 2025-04-22 14:59 +0200

1from pydantic_settings import BaseSettings, SettingsConfigDict 

2 

3class GitExplorerSettings(BaseSettings): 

4 """Settings for the Git Explorer tool.""" 

5 

6 model_config = SettingsConfigDict( 

7 env_prefix="GIT_EXPLORER_", 

8 env_file=".env", 

9 extra="ignore" 

10 ) 

11 

12 gitlab_token: str = ""