mirror of
https://github.com/terraform-docs/terraform-docs.git
synced 2026-03-27 12:58:35 +07:00
17 lines
375 B
Go
17 lines
375 B
Go
package cli
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
// Annotations returns set of annotations for cobra.Commands,
|
|
// specifically the 'command' namd and command 'kind'
|
|
func Annotations(cmd string) map[string]string {
|
|
annotations := make(map[string]string)
|
|
for _, s := range strings.Split(cmd, " ") {
|
|
annotations["command"] = s
|
|
}
|
|
annotations["kind"] = "formatter"
|
|
return annotations
|
|
}
|