UNPKG

@spotinst/spinnaker-deck

Version:

Spinnaker-Deck service, forked with support to Spotinst

16 lines (12 loc) 796 B
import { module } from 'angular'; import { DCOS_LOADBALANCER_CONFIGURE_WIZARD_PORTS_CONTROLLER } from './wizard/ports.controller'; import { DCOS_LOADBALANCER_CONFIGURE_WIZARD_RESOURCES_CONTROLLER } from './wizard/resources.controller'; import { DCOS_LOADBALANCER_CONFIGURE_WIZARD_UPSERT_CONTROLLER } from './wizard/upsert.controller'; ('use strict'); export const DCOS_LOADBALANCER_CONFIGURE_CONFIGURE_DCOS_MODULE = 'spinnaker.dcos.loadBalancer.configure'; export const name = DCOS_LOADBALANCER_CONFIGURE_CONFIGURE_DCOS_MODULE; // for backwards compatibility module(DCOS_LOADBALANCER_CONFIGURE_CONFIGURE_DCOS_MODULE, [ DCOS_LOADBALANCER_CONFIGURE_WIZARD_UPSERT_CONTROLLER, DCOS_LOADBALANCER_CONFIGURE_WIZARD_RESOURCES_CONTROLLER, DCOS_LOADBALANCER_CONFIGURE_WIZARD_PORTS_CONTROLLER, ]);