Get handler arguments
Gets the list of handler arguments
Function GetHandlerArguments(Val Project, Val HandlersKey) Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
Project | --proj | String | ✔ | Project filepath |
HandlersKey | --handler | String | ✔ | Handlers key |
Returns: Structure Of KeyAndValue - Handlers list
- Bash
- CMD/Bat
melezh GetHandlerArguments \
--proj "/proj.melezh" \
--handler "my-key"
melezh GetHandlerArguments ^
--proj "/proj.melezh" ^
--handler "my-key"
Result
{
"data": [
{
"arg": "text",
"strict": 1,
"value": "Hello world!"
}
],
"result": true
}