Method
setup
(svc appServices, parent commandParent)
Source from the content-addressed store, hash-verified
| 10 | } |
| 11 | |
| 12 | func (c *commandContent) setup(svc appServices, parent commandParent) { |
| 13 | cmd := parent.Command("content", "Commands to manipulate content in repository.").Alias("contents").Hidden() |
| 14 | |
| 15 | c.delete.setup(svc, cmd) |
| 16 | c.list.setup(svc, cmd) |
| 17 | c.rewrite.setup(svc, cmd) |
| 18 | c.show.setup(svc, cmd) |
| 19 | c.stats.setup(svc, cmd) |
| 20 | c.verify.setup(svc, cmd) |
| 21 | } |
Callers
nothing calls this directly
Tested by
no test coverage detected