Create very basic message tree widget structure

Also, fix some cheuph structuring problems
This commit is contained in:
Joscha 2019-05-25 13:44:28 +00:00
parent 7e2c802364
commit 66a67f3f28
5 changed files with 52 additions and 8 deletions

View file

@ -1,4 +1,9 @@
__all__ = ["Message", "RenderedMessage"]
from typing import Hashable
__all__ = ["Id", "Message", "RenderedMessage"]
Id = Hashable
class Message: