mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-16 07:06:45 +00:00
16 lines
292 B
Go
16 lines
292 B
Go
package certs
|
|
|
|
type Installer struct{}
|
|
|
|
func NewInstaller() *Installer {
|
|
return &Installer{}
|
|
}
|
|
|
|
func (installer *Installer) InstallCert(certPEM []byte) error {
|
|
return installCert(certPEM)
|
|
}
|
|
|
|
func (installer *Installer) UninstallCert(certPEM []byte) error {
|
|
return uninstallCert(certPEM)
|
|
}
|