mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 17:37:12 +00:00
10 lines
113 B
Go
10 lines
113 B
Go
|
package config
|
||
|
|
||
|
import (
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
func parseRbac(list string) []string {
|
||
|
return strings.Split(list, ",")
|
||
|
}
|