Initial set of tools for editing/running projects

This commit is contained in:
2025-01-18 21:25:27 -06:00
commit e239215895
7 changed files with 126 additions and 0 deletions

11
goat/__main__.py Normal file
View File

@@ -0,0 +1,11 @@
import sys
import os
if __name__ == "__main__":
try:
from .goat import main
except ImportError:
sys.path.append(os.path.dirname(os.path.dirname(__file__)))
from goat import main
main()