github.com/readium/readium-lcp-server@v0.0.0-20240101192032-6e95190e99f1/frontend/manage/app/license/license.module.ts (about)

     1  import { NgModule }                 from '@angular/core';
     2  import { CommonModule }             from '@angular/common';
     3  import { RouterModule }             from '@angular/router';
     4  
     5  import { LicenseService }             from './license.service';
     6  import { LicenseRoutingModule }       from './license-routing.module';
     7  import { LicenseComponent }           from './license.component';
     8  import { LicenseInfoComponent }       from './license-info.component';
     9  
    10  import { SortModule }                 from '../shared/pipes/sort.module';
    11  
    12  @NgModule({
    13      imports: [
    14          CommonModule,
    15          RouterModule,
    16          LicenseRoutingModule,
    17          SortModule
    18      ],
    19      declarations: [
    20          LicenseComponent,
    21          LicenseInfoComponent
    22      ],
    23      providers: [
    24          LicenseService
    25      ]
    26  })
    27  
    28  export class LicenseModule { }