mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-04-24 13:54:59 +00:00
8 lines
190 B
Python
8 lines
190 B
Python
"""Workflow plugin: convert string to uppercase."""
|
|
|
|
|
|
def run(_runtime, inputs):
|
|
"""Convert string to uppercase."""
|
|
text = inputs.get("text", "")
|
|
return {"result": text.upper()}
|