mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 06:51:49 +08:00

Co-authored-by: Dana Axinte <53751979+dana-axinte@users.noreply.github.com> Co-authored-by: Michael Mandrus <michael.mandrus@grafana.com>
9 lines
158 B
Go
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)
|
|
}
|