Authenticate user with HTTP Basic Auth.
(username, password)
| 160 | |
| 161 | |
| 162 | def check_credentials(username, password): |
| 163 | """Authenticate user with HTTP Basic Auth.""" |
| 164 | return username == get_user(password) |
| 165 | |
| 166 | |
| 167 | basic_auth = websockets_basic_auth(check_credentials=check_credentials) |
nothing calls this directly
no test coverage detected
searching dependent graphs…