mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 15:36:25 +00:00
11 lines
380 B
TypeScript
11 lines
380 B
TypeScript
import { ProgrammingLanguage } from '../../constants';
|
|
import { updateArtifacts } from './artifacts';
|
|
import { extractPackageFile } from './extract';
|
|
import { updateDependency } from './update';
|
|
|
|
export const language = ProgrammingLanguage.Golang;
|
|
export { extractPackageFile, updateDependency, updateArtifacts };
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)go.mod$'],
|
|
};
|