12 lines
211 B
Python
12 lines
211 B
Python
"""
|
|
Widgets package for YouTube TUI
|
|
"""
|
|
|
|
from youtube_tui.widgets.command_palette import CommandPalette
|
|
from youtube_tui.widgets.status_bar import StatusBar
|
|
|
|
__all__ = [
|
|
"StatusBar",
|
|
"CommandPalette",
|
|
]
|