lot more stuff

This commit is contained in:
Morten Olsen
2025-08-04 23:44:14 +02:00
parent daf0ea21bb
commit 757b2fcfac
185 changed files with 115899 additions and 1874 deletions

View File

@@ -0,0 +1,17 @@
import { authentikServerDefinition } from './authentik-server/authentik-server.ts';
import { domainServiceDefinition } from './domain-service/domain-service.ts';
import { domainDefinition } from './domain/domain.ts';
import { postgresConnectionDefinition } from './postgres-connection/postgres-connection.ts';
import { postgresDatabaseDefinition } from './postgres-database/postgres-database.ts';
import { redisConnectionDefinition } from './redis-connection/redis-connection.ts';
const customResources = [
domainDefinition,
domainServiceDefinition,
postgresConnectionDefinition,
postgresDatabaseDefinition,
redisConnectionDefinition,
authentikServerDefinition,
];
export { customResources };