29 lines
750 B
TypeScript
29 lines
750 B
TypeScript
/*
|
|
Authors : initappz (Rahul Jograna)
|
|
Website : https://initappz.com/
|
|
App Name : E-Learning App Template
|
|
This App Template Source code is licensed as per the
|
|
terms found in the Website https://initappz.com/license
|
|
Copyright and Good Faith Purchasers © 2021-present initappz.
|
|
*/
|
|
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { CallPageRoutingModule } from './call-routing.module';
|
|
|
|
import { CallPage } from './call.page';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
CallPageRoutingModule
|
|
],
|
|
declarations: [CallPage]
|
|
})
|
|
export class CallPageModule { }
|