(name string)
| 32 | // Reader provides read-only (without list) access to context data |
| 33 | type Reader interface { |
| 34 | GetMetadata(name string) (Metadata, error) |
| 35 | ListTLSFiles(name string) (map[string]EndpointFiles, error) |
| 36 | GetTLSData(contextName, endpointName, fileName string) ([]byte, error) |
| 37 | } |
no outgoing calls