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