Skip to content
Snippets Groups Projects
Select Git revision
  • d3ac5b0b9dd316db5797e13789b5b8c3e8fa9ff6
  • master default protected
  • dwmcallister-patch-1
  • 520-fix-wsl
  • tune-worker-processes
  • alpine-nginxorg
  • 1.29.0
  • 1.28.0
  • 1.27.5
  • 1.27.3
  • 1.27.2
  • 1.27.0
  • 1.26.1
  • 1.26.0
  • 1.25.5
  • 1.25.4
  • 1.25.3
  • 1.25.2
  • 1.25.1
  • 1.25.0
  • 1.24.0
  • 1.23.3
  • 1.23.4
  • 1.23.2
  • 1.22.1
  • 1.23.1
26 results

Dockerfile-debian-perl.template

Blame
  • api.ts 788 B
    import type { PlatformId } from '../../constants';
    import * as azure from './azure';
    import * as bitbucket from './bitbucket';
    import * as bitbucketServer from './bitbucket-server';
    import * as codecommit from './codecommit';
    import * as gerrit from './gerrit';
    import * as gitea from './gitea';
    import * as github from './github';
    import * as gitlab from './gitlab';
    import * as local from './local';
    import type { Platform } from './types';
    
    const api = new Map<PlatformId, Platform>();
    export default api;
    
    api.set(azure.id, azure);
    api.set(bitbucket.id, bitbucket);
    api.set(bitbucketServer.id, bitbucketServer);
    api.set(codecommit.id, codecommit);
    api.set(gerrit.id, gerrit);
    api.set(gitea.id, gitea);
    api.set(github.id, github);
    api.set(gitlab.id, gitlab);
    api.set(local.id, local);