github.com/yoheimuta/protolint@v0.49.8-0.20240515023657-4ecaebb7575d/cmd/pl/main.go (about)

     1  package main
     2  
     3  import (
     4  	"os"
     5  
     6  	"github.com/yoheimuta/protolint/internal/cmd"
     7  )
     8  
     9  // DEPRECATED: Use cmd/protolint. See https://github.com/yoheimuta/protolint/issues/20.
    10  func main() {
    11  	os.Exit(int(
    12  		cmd.Do(
    13  			os.Args[1:],
    14  			os.Stdout,
    15  			os.Stderr,
    16  		),
    17  	))
    18  }