blob: bcba4ee9d6e37b758b73a44713c773c475896dd6 [file] [log] [blame]
Philipp Schrader36df73a2022-03-17 23:27:24 -07001import {NgModule, Pipe, PipeTransform} from '@angular/core';
Philipp Schrader80587432022-03-05 15:41:22 -08002import {CommonModule} from '@angular/common';
Philipp Schrader93ade042022-03-05 17:16:10 -08003import {FormsModule} from '@angular/forms';
Alex Perryf82524c2022-03-09 20:04:47 -08004import {EntryComponent} from './entry.component';
Philipp Schradere2e27ff2024-02-25 22:08:55 -08005import {QRCodeModule} from 'angularx-qrcode';
Alex Perryf82524c2022-03-09 20:04:47 -08006
Philipp Schrader80587432022-03-05 15:41:22 -08007@NgModule({
Filip Kujawa0ef334c2023-02-20 19:42:45 -08008 declarations: [EntryComponent],
Philipp Schrader80587432022-03-05 15:41:22 -08009 exports: [EntryComponent],
Philipp Schradere2e27ff2024-02-25 22:08:55 -080010 imports: [CommonModule, FormsModule, QRCodeModule],
Philipp Schrader80587432022-03-05 15:41:22 -080011})
Philipp Schrader817cce32022-03-26 15:00:00 -070012export class EntryModule {}