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

     1  import { NgModule }                 from '@angular/core';
     2  import { CommonModule }             from '@angular/common';
     3  import { RouterModule }             from '@angular/router';
     4  import {
     5      FormsModule,
     6      ReactiveFormsModule }           from '@angular/forms';
     7  
     8  import { Ng2DatetimePickerModule }  from 'ng2-datetime-picker';
     9  
    10  import { LsdService }               from './lsd.service';
    11  
    12  @NgModule({
    13      imports: [
    14          CommonModule
    15      ],
    16      declarations: [],
    17      providers: [
    18          LsdService
    19      ]
    20  })
    21  
    22  export class LsdModule { }