Philipp Schrader | e2e27ff | 2024-02-25 22:08:55 -0800 | [diff] [blame^] | 1 | import {NgModule} from '@angular/core'; |
2 | import {CommonModule} from '@angular/common'; | ||||
3 | import {ScanComponent} from './scan.component'; | ||||
4 | |||||
5 | @NgModule({ | ||||
6 | declarations: [ScanComponent], | ||||
7 | exports: [ScanComponent], | ||||
8 | imports: [CommonModule], | ||||
9 | }) | ||||
10 | export class ScanModule {} |