(secret: Any)
| 25 | |
| 26 | |
| 27 | def is_valid_jwt_secret(secret: Any) -> bool: |
| 28 | return isinstance(secret, str) and len(secret) >= JWT_SECRET_MIN_LENGTH |
| 29 | |
| 30 | |
| 31 | def is_config_initialized(config: dict[str, Any]) -> bool: |
no outgoing calls
no test coverage detected