refactor(odin): Migrated nushell-completion command to go.

This commit is contained in:
2026-06-12 14:52:46 -04:00
parent 67f735a654
commit 5eee6cd6ea
6 changed files with 119 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
package main
import "core:fmt"
COMPLETION_SCRIPT: string : string(#load("mod.nu"))
cmd_nushell_completion :: proc(cmd: ^Command) {
fmt.print(COMPLETION_SCRIPT)
}