shoebill/internal/utils/sopshelper/mock.go
2023-10-11 14:14:20 +02:00

12 lines
183 B
Go

package sopshelper
type SopsMock struct{}
func NewSopsMock() SopsHelper {
return &SopsMock{}
}
func (sops *SopsMock) Decrypt(filepath string) ([]byte, error) {
return nil, nil
}