shoebill/internal/utils/sopshelper/mock.go
2024-01-18 01:03:23 +01: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
}