mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-05 20:40:09 -08:00
13 lines
258 B
Python
13 lines
258 B
Python
import sys
|
|
|
|
if sys.version_info < (3, 11):
|
|
raise ImportError(
|
|
"You are using an unsupported version of Python. Only Python versions 3.10 and above are supported by Viu"
|
|
) # noqa: F541
|
|
|
|
|
|
def Cli():
|
|
from .cli import run_cli
|
|
|
|
run_cli()
|