blob: 993bf7453e37e3497347897db1f189d8645a8242 [file] [log] [blame]
// The unmarshal command runs the unmarshal analyzer.
package main
import (
"golang.org/x/tools/go/analysis/passes/unmarshal"
"golang.org/x/tools/go/analysis/singlechecker"
)
func main() { singlechecker.Main(unmarshal.Analyzer) }