woodpecker/vendor/github.com/sonatard/noctx/reqwithoutctx/main.go
Lukas c28f7cb29f
Add golangci-lint (#502)
Initial part of #435
2021-11-14 21:01:54 +01:00

14 lines
225 B
Go

package reqwithoutctx
import (
"golang.org/x/tools/go/analysis"
)
func Run(pass *analysis.Pass) (interface{}, error) {
analyzer := NewAnalyzer(pass)
reports := analyzer.Exec()
report(pass, reports)
return nil, nil
}