22 lines
332 B
Python
22 lines
332 B
Python
|
|
@flowx_block
|
||
|
|
def example_function(request: dict) -> dict:
|
||
|
|
|
||
|
|
# Processing logic here...
|
||
|
|
|
||
|
|
return {
|
||
|
|
"meta_info": [
|
||
|
|
{
|
||
|
|
"name": "created_date",
|
||
|
|
"type": "string",
|
||
|
|
"value": "2024-11-05"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"fields": [
|
||
|
|
{
|
||
|
|
"name": "",
|
||
|
|
"type": "",
|
||
|
|
"value": ""
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|