2021-01-27 11:11:02 +00:00
|
|
|
// (C) Copyright 2015 Moodle Pty Ltd.
|
|
|
|
//
|
|
|
|
// 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 { NgModule } from '@angular/core';
|
|
|
|
|
2021-02-09 14:06:40 +00:00
|
|
|
import { AddonModAssignModule } from './assign/assign.module';
|
2021-02-08 13:29:11 +00:00
|
|
|
import { AddonModBookModule } from './book/book.module';
|
2021-01-27 11:11:02 +00:00
|
|
|
import { AddonModLessonModule } from './lesson/lesson.module';
|
2021-02-09 12:44:31 +00:00
|
|
|
import { AddonModPageModule } from './page/page.module';
|
2021-02-10 13:59:22 +00:00
|
|
|
import { AddonModQuizModule } from './quiz/quiz.module';
|
2021-01-27 11:11:02 +00:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [],
|
|
|
|
imports: [
|
2021-02-09 14:06:40 +00:00
|
|
|
AddonModAssignModule,
|
2021-02-08 13:29:11 +00:00
|
|
|
AddonModBookModule,
|
2021-01-27 11:11:02 +00:00
|
|
|
AddonModLessonModule,
|
2021-02-09 12:44:31 +00:00
|
|
|
AddonModPageModule,
|
2021-02-10 13:59:22 +00:00
|
|
|
AddonModQuizModule,
|
2021-01-27 11:11:02 +00:00
|
|
|
],
|
|
|
|
providers: [],
|
|
|
|
exports: [],
|
|
|
|
})
|
|
|
|
export class AddonModModule { }
|