Johan B.W. de Vries bb9ac649bf Routing ideas
2023-04-11 09:45:58 +02:00

8 lines
124 B
Python

class Image:
__slots__ = ('hash', )
hash: str
def __init__(self, hash: str) -> None:
self.hash = hash