Get credentials directory setting. Environment variable: CREDENTIALS_DIR Database config key: credentials_dir Default: ./creds
()
| 276 | |
| 277 | |
| 278 | async def get_credentials_dir() -> str: |
| 279 | """ |
| 280 | Get credentials directory setting. |
| 281 | |
| 282 | Environment variable: CREDENTIALS_DIR |
| 283 | Database config key: credentials_dir |
| 284 | Default: ./creds |
| 285 | """ |
| 286 | return str(await get_config_value("credentials_dir", "./creds", "CREDENTIALS_DIR")) |
| 287 | |
| 288 | |
| 289 | async def get_code_assist_endpoint() -> str: |
nothing calls this directly
no test coverage detected