8 lines
183 B
Python
8 lines
183 B
Python
|
|
"""
|
||
|
|
Textual-based TUI implementation for StreamLens
|
||
|
|
Provides modern, reactive interface with widget-based architecture
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .app import StreamLensApp
|
||
|
|
|
||
|
|
__all__ = ['StreamLensApp']
|