mirror of
https://github.com/JoeanAmier/XHS-Downloader.git
synced 2025-12-26 04:48:05 +08:00
10 lines
175 B
Python
10 lines
175 B
Python
from textual.app import ComposeResult
|
|
from textual.screen import Screen
|
|
|
|
__all__ = ["Progress"]
|
|
|
|
|
|
class Progress(Screen):
|
|
def compose(self) -> ComposeResult:
|
|
pass
|