import { Module } from '@nestjs/common'; import { GitlabStorageService } from './gitlab-storage.service'; @Module({ providers: [GitlabStorageService], exports: [GitlabStorageService], }) export class GitlabStorageModule {}