17840: Merge branch 'main'
[arvados.git] / cmd / arvados-client / cmd.go
index 308af5a01a20e0e4bf93e9cbe261d1aede87b51f..cb15462119d4d1d3368382e1cbbcceafba40464f 100644 (file)
@@ -7,8 +7,12 @@ package main
 import (
        "os"
 
-       "git.curoverse.com/arvados.git/lib/cli"
-       "git.curoverse.com/arvados.git/lib/cmd"
+       "git.arvados.org/arvados.git/lib/cli"
+       "git.arvados.org/arvados.git/lib/cmd"
+       "git.arvados.org/arvados.git/lib/costanalyzer"
+       "git.arvados.org/arvados.git/lib/deduplicationreport"
+       "git.arvados.org/arvados.git/lib/diagnostics"
+       "git.arvados.org/arvados.git/lib/mount"
 )
 
 var (
@@ -50,6 +54,13 @@ var (
                "user":                     cli.APICall,
                "virtual_machine":          cli.APICall,
                "workflow":                 cli.APICall,
+
+               "mount":                mount.Command,
+               "deduplication-report": deduplicationreport.Command,
+               "costanalyzer":         costanalyzer.Command,
+               "shell":                shellCommand{},
+               "connect-ssh":          connectSSHCommand{},
+               "diagnostics":          diagnostics.Command{},
        })
 )