diff options
Diffstat (limited to 'ui/__init__.py')
| -rw-r--r-- | ui/__init__.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ui/__init__.py b/ui/__init__.py new file mode 100644 index 0000000..89a4640 --- /dev/null +++ b/ui/__init__.py @@ -0,0 +1,8 @@ +""" +UI package for P2P/Mesh chat application. +Contains chat window and user interface components. +""" + +from .chat_window import ChatWindow + +__all__ = ['ChatWindow'] |
