blob: df920425737a03918e47a07764a18049d867caa4 [file] [log] [blame]
Philipp Schradere5d13942024-03-17 15:44:35 -07001import {NgModule} 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 {}