blob: 954017082ec730a6d7f7f3e45749ec937dde6c52 [file] [log] [blame]
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { ShareModule } from '@zeppelin/share';
import { NzTableModule } from 'ng-zorro-antd/table';
import { ConfigurationRoutingModule } from './configuration-routing.module';
import { ConfigurationComponent } from './configuration.component';
@NgModule({
declarations: [ConfigurationComponent],
imports: [CommonModule, ShareModule, NzTableModule, ConfigurationRoutingModule]
})
export class ConfigurationModule {}