mirror of
https://github.com/Cheviiot/Vual.git
synced 2026-08-03 15:57:25 +00:00
15 lines
294 B
Python
Executable File
15 lines
294 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""Dev launcher for Vual."""
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
# All pycache in one place
|
|
sys.pycache_prefix = str(Path(__file__).resolve().parent / ".pycache")
|
|
|
|
sys.path.insert(0, str(Path(__file__).resolve().parent / "src"))
|
|
|
|
from vual.__main__ import main
|
|
|
|
main()
|