7 lines
130 B
Go
7 lines
130 B
Go
package client
|
|
|
|
// SignResult is the result of signing a CSR.
|
|
type SignResult struct {
|
|
Certificate []byte `json:"certificate"`
|
|
}
|