add authentik connection crd

This commit is contained in:
Morten Olsen
2025-08-11 23:16:12 +02:00
parent 130bfec468
commit d4b56007f1
9 changed files with 289 additions and 6 deletions

View File

@@ -0,0 +1,21 @@
import type { Services } from '../../utils/service.ts';
import { ValueReference } from './value-reference.instance.ts';
class ValueReferenceService {
#services: Services;
constructor(services: Services) {
this.#services = services;
}
public get = (namespace: string) => {
return new ValueReference({
namespace,
services: this.#services,
});
};
}
export * from './value-reference.instance.ts';
export { ValueReferenceService };