fix: move tag command to subcommand of nodes
This commit is contained in:
parent
ea7bcfffbb
commit
f53bb63b2d
3 changed files with 196 additions and 208 deletions
|
|
@ -564,3 +564,13 @@ func GetFileMode(key string) fs.FileMode {
|
|||
|
||||
return fs.FileMode(mode)
|
||||
}
|
||||
|
||||
func containsString(ss []string, s string) bool {
|
||||
for _, v := range ss {
|
||||
if v == s {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue