@lxdhub/api
Version:
Display, search and copy LXD-images using a web interface.
29 lines (26 loc) • 660 B
text/typescript
import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { RemoteFactory } from './factories';
import { RemoteController } from './remote.controller';
import { RemoteService } from './remote.service';
import { Remote } from '@lxdhub/db';
/**
* The remote module, which bundles all
* operational or processable remote related
* modules, controllers and components
*/
export class RemoteModule { }