This commit is contained in:
2026-03-19 02:47:08 +10:00
commit 66dffe050c
37 changed files with 5572 additions and 0 deletions
Executable
+14
View File
@@ -0,0 +1,14 @@
#!/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()