github.com/stackb/rules_proto@v0.0.0-20240221195024-5428336c51f1/language/example/example.go (about)

     1  package example
     2  
     3  import (
     4  	"github.com/bazelbuild/bazel-gazelle/language"
     5  
     6  	"github.com/stackb/rules_proto/pkg/language/noop"
     7  	// Put your own imports here!
     8  	// _ "github.com/org/repo/pkg/plugin/foo"
     9  )
    10  
    11  // NewLanguage is called by Gazelle to install this language extension in a
    12  // binary.
    13  func NewLanguage() language.Language {
    14  	return noop.NewNoOpLanguage("my-project-name")
    15  }