mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-29 14:13:22 -08:00
10 lines
158 B
Python
10 lines
158 B
Python
from .cli import cli as run_cli
|
|
import sys
|
|
import os
|
|
|
|
if sys.platform.startswith("win"):
|
|
os.environ.setdefault("PYTHONUTF8", "1")
|
|
|
|
|
|
__all__ = ["run_cli"]
|