11 lines
189 B
Go
11 lines
189 B
Go
package cert
|
|
|
|
type PathInfo struct {
|
|
CaCertPath string
|
|
CaPrivateKeyPath string
|
|
ClientCertPath string
|
|
ClientKeyPath string
|
|
ServerCertPath string
|
|
ServerKeyPath string
|
|
}
|