package storage type Storage interface { GetCertificate(key string) (interface{}, error) GetPrivateKey(key string) (interface{}, error) }