mirror of https://github.com/renovatebot/renovate
14 lines
359 B
TypeScript
14 lines
359 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { GoDatasource } from '../../datasource/go';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
export { bumpPackageVersion } from './update';
|
|
|
|
export const supportedDatasources = [GoDatasource.id];
|
|
|
|
export const categories: Category[] = ['golang'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: [],
|
|
};
|