mirror of
https://github.com/Lydanne/spaceflow.git
synced 2026-03-11 19:52:45 +08:00
9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
import { Module } from "@nestjs/common";
|
|
import { BuildCommand } from "./build.command";
|
|
import { BuildService } from "./build.service";
|
|
|
|
@Module({
|
|
providers: [BuildCommand, BuildService],
|
|
})
|
|
export class BuildModule {}
|