mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-15 12:27:59 +00:00
11 lines
126 B
Go
11 lines
126 B
Go
package certificate
|
|||
|
|||
import (
|
|||
"crypto/rsa"
|
|||
)
|
|||
|
|||
type Current struct {
|
|||
CertificateKey *rsa.PrivateKey
|
|||
Certificate []byte
|
|||
}
|