mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-12 15:50:01 -08:00
16 lines
198 B
Python
16 lines
198 B
Python
import click
|
|
|
|
from ..interfaces import anime_provider_
|
|
|
|
|
|
@click.command()
|
|
@click.pass_obj
|
|
def search(
|
|
config,
|
|
anime_title,
|
|
):
|
|
anime_provider_(
|
|
config,
|
|
anime_title,
|
|
)
|