Move CLI to own package

This commit is contained in:
Joakim Hellsén 2024-06-27 11:53:39 +02:00
commit 7a1226b232
No known key found for this signature in database
GPG key ID: D196AE66FEBE1DC9
12 changed files with 273 additions and 179 deletions

13
cli/__init__.py Normal file
View 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",
]