UNPKG

@lxdhub/dbsync

Version:

Display, search and copy LXD-images using a web interface.

12 lines (10 loc) 334 B
import { Module } from '@nestjs/common'; import { SyncRunService } from './sync-run.service'; import { TypeOrmModule } from '@nestjs/typeorm'; import { SyncRun } from '@lxdhub/db'; @Module({ imports: [TypeOrmModule.forFeature([SyncRun])], providers: [SyncRunService], exports: [SyncRunService] }) export class SyncRunModule {}