@cto.ai/ops
Version:
💻 CTO.ai - The CLI built for Teams 🚀
28 lines (27 loc) • 1.19 kB
TypeScript
import { FeathersClient } from './Feathers';
import { AnalyticsService } from './Analytics';
import { Publish } from './Publish';
import { ImageService } from './Image';
import { OpService } from './Op';
import { KeycloakService } from './Keycloak';
import { RegistryAuthService } from './RegistryAuth';
import { SecretService } from './Secret';
import { ContainerService } from './Container';
import { ConfigService } from './Config';
import { BillingService } from './Billing';
import { SubscriptionService } from './Subscription';
export { FeathersClient, AnalyticsService, Publish, ImageService, OpService, KeycloakService, RegistryAuthService, SecretService, ConfigService, BillingService, SubscriptionService, };
export declare const defaultServicesList: {
api: FeathersClient;
publishService: Publish;
imageService: ImageService;
analytics: AnalyticsService;
opService: OpService;
keycloakService: KeycloakService;
registryAuthService: RegistryAuthService;
secretService: SecretService;
containerService: ContainerService;
configService: ConfigService;
billingService: BillingService;
subscriptionService: SubscriptionService;
};