github.com/yandex/pandora@v0.5.32/components/providers/scenario/grpc/preprocessor/preprocessor.go (about)

     1  package preprocessor
     2  
     3  import (
     4  	"github.com/yandex/pandora/components/guns/grpc/scenario"
     5  )
     6  
     7  type Preprocessor interface {
     8  	Process(call *scenario.Call, templateVars map[string]any) (newVars map[string]any, err error)
     9  }