workgroups/vendor/github.com/sonatard/noctx/reqwithoutctx/main.go
Marvin Preuss 1d4ae27878
All checks were successful
continuous-integration/drone/push Build is passing
ci: drone yaml with reusable anchors
2021-09-24 17:34:17 +02:00

15 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
}