mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-26 12:51:15 -08:00
13 lines
256 B
Python
13 lines
256 B
Python
import sys
|
|
|
|
if sys.version_info < (3, 10):
|
|
raise ImportError(
|
|
"You are using an unsupported version of Python. Only Python versions 3.10 and above are supported by FastAnime"
|
|
)
|
|
|
|
|
|
def FastAnime():
|
|
from .cli import run_cli
|
|
|
|
run_cli()
|