summaryrefslogtreecommitdiff
path: root/registry-scanner/pkg/common/helper.go
blob: f23e755928458545525672a0f5e97130648e933c (plain)
1
2
3
4
5
6
7
8
package common

// This file contains a helper function to retrieve prefixed value of the constants

// Prefixed returns the annotation of the constant prefixed with the given prefix
func Prefixed(prefix string, annotation string) string {
	return prefix + annotation
}