UNPKG

@dxdeveloperexperience/hygie

Version:

Hygie is an easy-to-use Open-Source REST API allowing you to interact with GIT events. This NestJS API expose a set of customizable rules to automate your project's life cycle.

11 lines (9 loc) 322 B
import { Module, HttpModule } from '@nestjs/common'; import { GithubService } from '../github/github.service'; import { GitlabService } from '../gitlab/gitlab.service'; @Module({ imports: [HttpModule], providers: [GithubService, GitlabService], exports: [GithubService, GitlabService], }) export class GitModule {}