Files
postgres_exporter/tools/vendor/mvdan.cc/interfacer/main.go
Will Rouesnel 989489096e Refactor repository layout and convert build system to Mage.
This commit implements a massive refactor of the repository, and
moves the build system over to use Mage (magefile.org) which should
allow seamless building across multiple platforms.
2018-03-06 07:29:35 +10:00

33 lines
553 B
Go

// Copyright (c) 2015, Daniel Martí <mvdan@mvdan.cc>
// See LICENSE for licensing information
package main // import "mvdan.cc/interfacer"
import (
"flag"
"fmt"
"go/build"
"os"
"golang.org/x/tools/go/buildutil"
"mvdan.cc/interfacer/check"
)
func init() {
flag.Var((*buildutil.TagsFlag)(&build.Default.BuildTags), "tags",
buildutil.TagsFlagDoc)
}
func main() {
flag.Parse()
lines, err := check.CheckArgs(flag.Args())
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
for _, line := range lines {
fmt.Println(line)
}
}