Reorganize project structure

This commit is contained in:
Joscha 2019-04-23 09:29:27 +00:00
parent d54df18d5e
commit 362d841070
6 changed files with 14 additions and 130 deletions

8
cheuph/__init__.py Normal file
View file

@ -0,0 +1,8 @@
from typing import List
from .markup import *
from .message import *
__all__: List[str] = []
__all__ += markup.__all__
__all__ += message.__all__