Get a single user by id.
(self, id: ID)
| 8 | """Base adapter for retrieving, creating and updating users from a database.""" |
| 9 | |
| 10 | async def get(self, id: ID) -> UP | None: |
| 11 | """Get a single user by id.""" |
| 12 | raise NotImplementedError() |
| 13 | |
| 14 | async def get_by_email(self, email: str) -> UP | None: |
| 15 | """Get a single user by email.""" |
no outgoing calls
no test coverage detected