feat(gatekeeper): add PR merge automation service
Some checks failed
ci/woodpecker/push/ci Pipeline failed
Some checks failed
ci/woodpecker/push/ci Pipeline failed
This commit is contained in:
12
apps/api/src/gatekeeper/gatekeeper.module.ts
Normal file
12
apps/api/src/gatekeeper/gatekeeper.module.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { Module } from "@nestjs/common";
|
||||
import { ConfigModule } from "@nestjs/config";
|
||||
import { GatekeeperController } from "./gatekeeper.controller";
|
||||
import { GatekeeperService } from "./gatekeeper.service";
|
||||
|
||||
@Module({
|
||||
imports: [ConfigModule],
|
||||
controllers: [GatekeeperController],
|
||||
providers: [GatekeeperService],
|
||||
exports: [GatekeeperService],
|
||||
})
|
||||
export class GatekeeperModule {}
|
||||
Reference in New Issue
Block a user