hello_world = task(
kind = "hello_world",
action_name = "hello_world",
input_arguments = [
argument(
name="name",
input_type = HashMap(String, String),
default_value = {"1": "hello_world"}
),
],
)
workflows(
name = "sample",
version = "0.0.1",
tasks = [hello_world],
)