mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-25 12:24:52 -08:00
11 lines
226 B
Python
11 lines
226 B
Python
import click
|
|
from rich import print
|
|
from .commands import search, download, anilist
|
|
|
|
commands = {"search": search, "download": download, "anilist": anilist}
|
|
|
|
|
|
@click.group(commands=commands)
|
|
def run_cli():
|
|
print("Yellow")
|