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