(s string)
| 722 | type ModTreePath []string |
| 723 | |
| 724 | func NewModTreePath(s string) ModTreePath { |
| 725 | return ModTreePath(strings.Split(s, ":")) |
| 726 | } |
| 727 | |
| 728 | func (p ModTreePath) CliCase() []string { |
| 729 | cliCase := make([]string, len(p)) |
no test coverage detected