shoebill/internal/utils/sopshelper/mock.go

12 lines
183 B
Go
Raw Normal View History

2023-07-20 09:26:25 +00:00
package sopshelper
type SopsMock struct{}
func NewSopsMock() SopsHelper {
return &SopsMock{}
}
func (sops *SopsMock) Decrypt(filepath string) ([]byte, error) {
return nil, nil
}