0
0
mirror of https://github.com/renovatebot/renovate.git synced 2024-12-22 21:48:32 +00:00
renovatebot_renovate/lib/modules/manager/custom/api.ts
RahulGautamSingh bf2c0693ac
refactor(managers): implement custom managers api (#23357)
Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
Co-authored-by: Sebastian Poxhofer <secustor@users.noreply.github.com>
2023-08-15 17:12:54 +00:00

8 lines
168 B
TypeScript

import type { ManagerApi } from '../types';
import * as regex from './regex';
const api = new Map<string, ManagerApi>();
export default api;
api.set('regex', regex);