mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
19 lines
603 B
TypeScript
19 lines
603 B
TypeScript
import * as azure from './azure';
|
|
import * as bitbucket from './bitbucket';
|
|
import * as bitbucketServer from './bitbucket-server';
|
|
import * as codecommit from './codecommit';
|
|
import * as gitea from './gitea';
|
|
import * as github from './github';
|
|
import * as gitlab from './gitlab';
|
|
import type { Platform } from './types';
|
|
|
|
const api = new Map<string, Platform>();
|
|
export default api;
|
|
|
|
api.set('azure', azure);
|
|
api.set('bitbucket', bitbucket);
|
|
api.set('bitbucket-server', bitbucketServer);
|
|
api.set('codecommit', codecommit);
|
|
api.set('gitea', gitea);
|
|
api.set('github', github);
|
|
api.set('gitlab', gitlab);
|