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

12 lines
322 B
TypeScript

import { DestinationRule } from './destination-rule/destination-rule.ts';
import { Gateway } from './gateway/gateway.ts';
import { VirtualService } from './virtual-service/virtual-service.ts';
const istio = {
gateway: Gateway,
destinationRule: DestinationRule,
virtualService: VirtualService,
};
export { istio };