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