12 lines
229 B
Python
12 lines
229 B
Python
#!/usr/bin/python3
|
|
import sys
|
|
import os
|
|
|
|
# Allow forcing Python fallback with env var
|
|
if os.environ.get('HYFETCH_PY'):
|
|
from hyfetch.py import run_py
|
|
run_py()
|
|
else:
|
|
from hyfetch.__main__ import run_rust
|
|
run_rust()
|