···9898 }
9999100100 if $base64 {
101101- log info $"If you'd like to check what info that contains, use `axr '_debug decode --base64 {base64}'`"
101101+ log info $"If you'd like to check what info that contains, use `axr _debug decode --base64 {base64}`"
102102 } else {
103103 log info $"If you'd like to check what info it contains, use `axr _debug decode ($output)`"
104104 }
+3-2
src/axr.nu.in
···55use std log
66/@AXR_LIB@/
7788-def main [
88+def main --wrapped [
99 # TODO: --choose (-c) # Interactively choose a function
1010+ --help (-h)
1011 --list (-l) # List avaliable commands
1112 --interactive (-i) # Enter interactive shell with the module loaded
1213 ...function
···1415 let function = $function | str join ' '
1516 if $interactive {
1617 exec nu -e "/@AXR_LIB@/; print $'(ansi yellow)AtomicXR module loaded.(ansi reset)'"
1717- } else if $list or ($function | is-empty) {
1818+ } else if $help or $list or ($function | is-empty) {
1819 print-functions
1920 } else {
2021 # Make sure the function is valid to avoid unhelpful error messages