forked from fabric8-launcher/ngx-launcher
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathngx-forge.module.ts
35 lines (32 loc) · 1.14 KB
/
ngx-forge.module.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { AsciidocComponent } from './src/app/components/asciidoc/asciidoc.component';
import { InputComponent } from './src/app/components/input/input.component';
import { MultiselectDropdownModule } from 'angular-2-dropdown-multiselect';
import { ProjectSelect } from './src/app/components/project-select/project-select.component';
import { Config } from './src/app/service/config.component';
import { ForgeService } from './src/app/service/forge.service';
import { History } from './src/app/service/history.component';
import { AsciidocIndex } from './src/app/components/asciidoc/asciidoc.index';
import { AsciidocService } from './src/app/components/asciidoc/asciidoc.service';
const classes = [
AsciidocComponent,
InputComponent,
ProjectSelect
];
@NgModule({
imports: [CommonModule, FormsModule, MultiselectDropdownModule],
exports: classes,
declarations: classes,
providers: [
ForgeService,
AsciidocIndex,
AsciidocService,
History,
Config
],
schemas: []
})
export class NgxForgeModule {
}