mirror of
https://github.com/morten-olsen/homelab-operator.git
synced 2026-02-08 01:36:28 +01:00
12 lines
327 B
TypeScript
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 };
|