Spaces:
Runtime error
Runtime error
File size: 638 Bytes
e331e72 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# Copyright (c) 2024 Microsoft Corporation.
# Licensed under the MIT License
mock_verbs = {
"mock_verb": lambda x: x,
"mock_verb_2": lambda x: x,
}
mock_workflows = {
"mock_workflow": lambda _x: [
{
"verb": "mock_verb",
"args": {
"column": "test",
},
}
],
"mock_workflow_2": lambda _x: [
{
"verb": "mock_verb",
"args": {
"column": "test",
},
},
{
"verb": "mock_verb_2",
"args": {
"column": "test",
},
},
],
}
|