19 lines
396 B
Text
19 lines
396 B
Text
|
|
# tools/ subsystem façade (ADR-026).
|
||
|
|
export use tools/command_registry.nu [
|
||
|
|
get_help_category_for_command
|
||
|
|
command_requires_args
|
||
|
|
get_commands_requiring_args
|
||
|
|
]
|
||
|
|
export use tools/compression.nu [
|
||
|
|
compress-workflow
|
||
|
|
decompress-workflow
|
||
|
|
]
|
||
|
|
export use tools/config.nu [
|
||
|
|
load-config
|
||
|
|
validate-config
|
||
|
|
merge-configs
|
||
|
|
get-config-value
|
||
|
|
set-config-value
|
||
|
|
save-config
|
||
|
|
]
|