k3s/vendor/github.com/cloudflare/cfssl/ocsp/config/config.go

14 lines
336 B
Go
Raw Normal View History

2019-01-12 04:58:27 +00:00
// 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
}