UNPKG

@lxdhub/dbsync

Version:

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

17 lines (14 loc) 258 B
import { Module } from '@nestjs/common'; import { LXDService } from './lxd.service'; /** * The LXDModule for LXD api operations */ @Module({ providers: [ LXDService ], exports: [ LXDService ] }) export class LXDModule { }