Registry implements interface Registry using file. This implement is usually for testing only.
| 29 | // Registry implements interface Registry using file. |
| 30 | // This implement is usually for testing only. |
| 31 | type Registry struct { |
| 32 | path string // Local storing folder path for Services. |
| 33 | } |
| 34 | |
| 35 | // New creates and returns a gsvc.Registry implements using file. |
| 36 | func New(path string) gsvc.Registry { |
nothing calls this directly
no outgoing calls
no test coverage detected