mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 00:56:26 +00:00
17 lines
524 B
TypeScript
17 lines
524 B
TypeScript
import * as azure from './azure';
|
|
import * as bitbucket from './bitbucket';
|
|
import * as bitbucketServer from './bitbucket-server';
|
|
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('gitea', gitea);
|
|
api.set('github', github);
|
|
api.set('gitlab', gitlab);
|