 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CertificatesInfo ¶ added in v5.1.0
Information about stored certificates to be returned by the API.
func ParseCertificatesInfo ¶ added in v5.1.0
func ParseCertificatesInfo(bundle []byte) (*CertificatesInfo, error)
type Storage ¶
type Storage interface {
	GetAll() ([]string, error)
	Get(name string) (string, int64, error)
	GetContents(name string) (string, error)
	GetRawContents(name string) (io.ReadCloser, error)
	GetCertificatesInfo(name string) (*CertificatesInfo, error)
	Delete(name string) error
	Replace(name string, config string) (string, error)
	Create(name string, contents io.ReadCloser) (string, int64, error)
}
     Click to show internal directories. 
   Click to hide internal directories.