Trying to construct modelspace

This commit is contained in:
2025-09-15 01:17:15 +07:00
parent 9651175e9a
commit 300d255008
10 changed files with 591 additions and 16 deletions

View File

@@ -1,7 +1,5 @@
from pathlib import Path
from modelspace.Repository import Repository
global_repo = Repository(str(Path('..') / 'repo'))
class ExecutionError(RuntimeError): pass

View File

@@ -1,4 +1,5 @@
from shell.Handlers.ABS import Handler, global_repo
from shell.Handlers.ABS import Handler
from modelspace.Repository import global_repo
class ModelSpaceHandler(Handler):