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

     1  package templater
     2  
     3  import (
     4  	gun "github.com/yandex/pandora/components/guns/http_scenario"
     5  )
     6  
     7  type Templater interface {
     8  	Apply(request *gun.RequestParts, variables map[string]any, scenarioName, stepName string) error
     9  }