| Adam Israel | dcdf82b | 2017-08-15 15:26:43 -0400 | [diff] [blame] | 1 | import logging |
| 2 | |||||
| 3 | from . import model | ||||
| 4 | |||||
| 5 | log = logging.getLogger(__name__) | ||||
| 6 | |||||
| 7 | |||||
| 8 | class Relation(model.ModelEntity): | ||||
| 9 | async def destroy(self): | ||||
| 10 | raise NotImplementedError() | ||||
| 11 | # TODO: destroy a relation | ||||