You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dashboard/frontend/src/app/shared/service-proxies/service-proxy.module.ts

14 lines
303 B
TypeScript

import { NgModule } from '@angular/core';
import * as ApiServiceProxies from './service-proxies';
@NgModule({
providers: [
ApiServiceProxies.AccountServiceProxy,
ApiServiceProxies.RegistryServiceProxy,
ApiServiceProxies.StatisticsServiceProxy,
]
})
export class ServiceProxyModule {
}