shoebill/internal/utils/sopshelper/mock.go

12 lines
183 B
Go
Raw Normal View History

2023-10-11 12:14:20 +00:00
package sopshelper
type SopsMock struct{}
func NewSopsMock() SopsHelper {
return &SopsMock{}
}
func (sops *SopsMock) Decrypt(filepath string) ([]byte, error) {
return nil, nil
}