snyk-docker-plugin
Version:
Snyk CLI docker plugin
10 lines (9 loc) • 483 B
TypeScript
import { AppDepsScanResultWithoutTarget, FilePathToElfContent } from "../analyzer/applications/types";
import { ExtractAction } from "../extractor/types";
export declare const DEP_GRAPH_TYPE = "gomodules";
export declare const getGoModulesContentAction: ExtractAction;
/**
* Build depGraphs for each Go executable
* @param filePathToContent
*/
export declare function goModulesToScannedProjects(filePathToContent: FilePathToElfContent): Promise<AppDepsScanResultWithoutTarget[]>;