mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f2614f2107
Signed-off-by: Alexander Morozov <lk4d4@docker.com>
13 lines
336 B
Go
13 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
|
|
}
|