Move CLI to own package
This commit is contained in:
parent
d23f364f71
commit
7a1226b232
12 changed files with 273 additions and 179 deletions
13
cli/__init__.py
Normal file
13
cli/__init__.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
from __future__ import annotations
|
||||
|
||||
from .add_steam_feeds import add_steam_feeds
|
||||
from .download_steam_ids import download_steam_ids
|
||||
from .grab_links import grab_links
|
||||
from .update_feeds import update_feeds
|
||||
|
||||
__all__: list[str] = [
|
||||
"add_steam_feeds",
|
||||
"download_steam_ids",
|
||||
"grab_links",
|
||||
"update_feeds",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue