Add civit module

Add civit.fetch function
This commit is contained in:
2025-09-19 18:12:57 +07:00
parent 70e6e7a00b
commit 817283034a
9 changed files with 844 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
from shell.Handlers.ABS import Handler
from shell.Handlers.CivitHandler import CivitHandler
from shell.Handlers.PythonappHandler import PythonappHandler
from shell.Handlers.ModelSpaceHandler import ModelSpaceHandler
@@ -9,6 +10,7 @@ class GlobalHandler(Handler):
self.forwarding_table: dict[str, Handler] = {
'pythonapp': PythonappHandler(),
'modelspace': ModelSpaceHandler(),
'civit': CivitHandler(),
}
self.handle_table: dict = {
'tell': self._tell