Add basic euphoria single-room application
This commit is contained in:
parent
60d686bfce
commit
43af84a395
4 changed files with 195 additions and 0 deletions
8
cheuph/euphoria/__init__.py
Normal file
8
cheuph/euphoria/__init__.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
from typing import List
|
||||
|
||||
from .palette import *
|
||||
from .single_room_application import *
|
||||
|
||||
__all__: List[str] = []
|
||||
__all__ += palette.__all__
|
||||
__all__ += single_room_application.__all__
|
||||
Loading…
Add table
Add a link
Reference in a new issue