mirror of
https://github.com/morten-olsen/homelab-operator.git
synced 2026-02-07 17:26:28 +01:00
11 lines
285 B
TypeScript
11 lines
285 B
TypeScript
import type { V1Namespace } from '@kubernetes/client-node';
|
|
|
|
import { Resource } from '#services/resources/resources.ts';
|
|
|
|
class Namespace extends Resource<V1Namespace> {
|
|
public static readonly apiVersion = 'v1';
|
|
public static readonly kind = 'Namespace';
|
|
}
|
|
|
|
export { Namespace };
|