Files
Matheus Macabu 3aba5cb2b7 SecretsManager: Bootstrap API service (#102444)
Co-authored-by: Dana Axinte <53751979+dana-axinte@users.noreply.github.com>
Co-authored-by: Michael Mandrus <michael.mandrus@grafana.com>
2025-03-19 13:41:29 +01:00

9 lines
158 B
Go

package xkube
// Namespace is a newtype of string that improves type safety.
type Namespace string
func (n Namespace) String() string {
return string(n)
}