mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
14 lines
336 B
Go
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
|
||
|
}
|