10 lines
266 B
TypeScript
10 lines
266 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import { InteractiveMiningModule, InteractiveMiningRoutingModule} from 'interactiveminingv3';
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
InteractiveMiningModule,
|
||
|
InteractiveMiningRoutingModule
|
||
|
]
|
||
|
})
|
||
|
export class MiningModule { }
|