refactor(odin): Ported remove command.

This commit is contained in:
2026-06-11 21:20:28 -04:00
parent 83a8caf691
commit 83b940337c
5 changed files with 71 additions and 4 deletions

View File

@@ -25,6 +25,8 @@ main :: proc() {
cmd_list(&cmd)
case "backup", "add":
cmd_backup(&cmd)
case "remove":
cmd_remove(&cmd)
case:
fmt.printf("Unknown command: %s\n", cmd.name)
print_usage()