6 lines
174 B
Text
6 lines
174 B
Text
|
|
#!/usr/bin/env nu
|
||
|
|
# No derived context needed — templates use taskserv.* directly.
|
||
|
|
def main [component_json: string]: nothing -> nothing {
|
||
|
|
{} | to json --raw | print
|
||
|
|
}
|