MCPcopy Index your code
hub / github.com/linuxkit/linuxkit / cacheCmd

Function cacheCmd

src/cmd/linuxkit/cache.go:16–32  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

14}
15
16func cacheCmd() *cobra.Command {
17
18 cmd := &cobra.Command{
19 Use: "cache",
20 Short: "manage the linuxkit cache",
21 Long: `manage the linuxkit cache.`,
22 }
23
24 cmd.AddCommand(cacheCleanCmd())
25 cmd.AddCommand(cacheRmCmd())
26 cmd.AddCommand(cacheLsCmd())
27 cmd.AddCommand(cacheExportCmd())
28 cmd.AddCommand(cacheImportCmd())
29 cmd.AddCommand(cachePullCmd())
30 cmd.AddCommand(cachePushCmd())
31 return cmd
32}

Callers 1

newCmdFunction · 0.85

Calls 7

cacheCleanCmdFunction · 0.85
cacheRmCmdFunction · 0.85
cacheLsCmdFunction · 0.85
cacheExportCmdFunction · 0.85
cacheImportCmdFunction · 0.85
cachePullCmdFunction · 0.85
cachePushCmdFunction · 0.85

Tested by

no test coverage detected