Files
operator/src/resources/flux/flux.ts
Morten Olsen 3ab2b1969a stuff
2025-08-19 22:05:41 +02:00

12 lines
327 B
TypeScript

import { HelmRelease } from './helm-release/helm-release.ts';
import { HelmRepo } from './helm-repo/helm-repo.ts';
import type { ResourceClass } from '#services/resources/resources.ts';
const flux = {
helmRelease: HelmRelease,
helmRepo: HelmRepo,
} satisfies Record<string, ResourceClass<ExpectedAny>>;
export { flux };