LP#1942220: oops
authorGalen Charlton <gmc@equinoxOLI.org>
Thu, 9 Dec 2021 22:42:58 +0000 (17:42 -0500)
committerGalen Charlton <gmc@equinoxOLI.org>
Thu, 9 Dec 2021 22:42:58 +0000 (17:42 -0500)
Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>
Open-ILS/src/eg2/src/app/staff/acq/acq-common.module.ts [new file with mode: 0644]

diff --git a/Open-ILS/src/eg2/src/app/staff/acq/acq-common.module.ts b/Open-ILS/src/eg2/src/app/staff/acq/acq-common.module.ts
new file mode 100644 (file)
index 0000000..7a32eda
--- /dev/null
@@ -0,0 +1,19 @@
+import {NgModule} from '@angular/core';
+import {StaffCommonModule} from '@eg/staff/common.module';
+import {UploadComponent} from './picklist/upload.component';
+
+@NgModule({
+  declarations: [
+    UploadComponent
+  ],
+  exports: [
+    UploadComponent
+  ],
+  imports: [
+    StaffCommonModule
+  ],
+  providers: []
+})
+
+export class AcqCommonModule {
+}