1package noop
2
3import (
4	"time"
5
6	"github.com/concourse/concourse/atc/creds"
7)
8
9type Noop struct{}
10
11func (n Noop) NewSecretLookupPaths(string, string, bool) []creds.SecretLookupPath {
12	return []creds.SecretLookupPath{}
13}
14
15func (n Noop) Get(secretPath string) (interface{}, *time.Time, bool, error) {
16	return nil, nil, false, nil
17}
18