local-server/vendor/github.com/cloudflare/cfssl/ocsp/config/config.go
Mikaël Cluseau 4d889632f6 vendor
2018-06-17 18:32:44 +11:00

14 lines
336 B
Go

// Package config in the ocsp directory provides configuration data for an OCSP
// signer.
package config
import "time"
// Config contains configuration information required to set up an OCSP signer.
type Config struct {
CACertFile string
ResponderCertFile string
KeyFile string
Interval time.Duration
}