github.com/yoheimuta/protolint@v0.49.8-0.20240515023657-4ecaebb7575d/internal/addon/plugin/shared/ruleSet.go (about) 1 package shared 2 3 import "github.com/yoheimuta/protolint/internal/addon/plugin/proto" 4 5 // RuleSet is the interface that we're exposing as a plugin. 6 type RuleSet interface { 7 ListRules(*proto.ListRulesRequest) (*proto.ListRulesResponse, error) 8 Apply(*proto.ApplyRequest) (*proto.ApplyResponse, error) 9 }