forked from Silverfish/proton-bridge
GODT-1779: Remove go-imap
This commit is contained in:
15
internal/certs/installer.go
Normal file
15
internal/certs/installer.go
Normal file
@ -0,0 +1,15 @@
|
||||
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)
|
||||
}
|
||||
Reference in New Issue
Block a user