Обновить executor/cli/execute.py
All checks were successful
Test Actions / Builder (push) Successful in 27s

This commit is contained in:
2025-10-19 15:53:09 +03:00
parent 4172d989c6
commit 587bbd4589

View File

@@ -1,6 +1,19 @@
__author__ = 'RemiZOffAlex'
__email__ = 'remizoffalex@mail.ru'
from executor.engine import Engine
from executor.core import config
def handle_execute(args):
print('args', args)
variables = {
'print': print,
}
engine = Engine()
for key in variables:
engine.variable_addition(key, variables[key])
source = {}
engine.visit(source)