15 lines
360 B
Go
15 lines
360 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/hashicorp/vault/tools/codechecker/pkg/godoctests"
|
|
"github.com/hashicorp/vault/tools/codechecker/pkg/gonilnilfunctions"
|
|
"golang.org/x/tools/go/analysis/multichecker"
|
|
)
|
|
|
|
func main() {
|
|
multichecker.Main(gonilnilfunctions.Analyzer, godoctests.Analyzer)
|
|
}
|