blob: 8f9a0bbf1e283dd3ad82f48d191774b056b2492d [file] [log] [blame]
// Copyright 2022 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package govulncheck has experimental govulncheck API.
package govulncheck
import (
"golang.org/x/vuln/internal/govulncheck"
)
// Config is the configuration for Main.
type Config = govulncheck.Config
// Main is the main function for the govulncheck command line tool.
func Main(cfg Config) error {
return govulncheck.Run(cfg)
}