refactor(odin): Ported init command.

This commit is contained in:
2026-06-12 09:16:28 -04:00
parent 191ba305ef
commit 5865315161
8 changed files with 441 additions and 11 deletions

View File

@@ -17,6 +17,8 @@ main :: proc() {
}
switch cmd.name {
case "init":
cmd_init(&cmd)
case "version":
cmd_version(&cmd)
case "deps":
@@ -35,6 +37,8 @@ main :: proc() {
cmd_check(&cmd)
case "scan":
cmd_scan(&cmd)
case "sync":
cmd_sync(&cmd)
case:
fmt.printf("Unknown command: %s\n", cmd.name)
print_usage()