|
@@ -493,16 +493,17 @@ Void function main():
|
|
|
\tlog("Executed the code!")
|
|
|
\treturn
|
|
|
"""
|
|
|
+username = "test_user"
|
|
|
|
|
|
operations = [get_object_constructor(open(f, 'r').read()) for f in files] + \
|
|
|
get_object_constructor(code) + \
|
|
|
- link_code("main", files + ["code.alc"])
|
|
|
+ link_code("main", username, files + ["code.alc"])
|
|
|
|
|
|
print("Generated operations:")
|
|
|
print(operations)
|
|
|
|
|
|
args = {
|
|
|
- "username": "test_user",
|
|
|
+ "username": username,
|
|
|
"operations": operations,
|
|
|
"mvi2mvk_latency": 1,
|
|
|
"mvi2mvk_bandwidth": 2000,
|