Verify API key
(api_key: str)
| 14 | |
| 15 | @staticmethod |
| 16 | def verify_api_key(api_key: str) -> bool: |
| 17 | """Verify API key""" |
| 18 | return api_key == config.api_key |
| 19 | |
| 20 | @staticmethod |
| 21 | def verify_admin(username: str, password: str) -> bool: |
no outgoing calls
no test coverage detected