| 71 | } |
| 72 | |
| 73 | type service struct { |
| 74 | // cfg holds the serializable service configuration. |
| 75 | cfg *ServiceConfig |
| 76 | // configMap holds additional specific service configuration key/val pairs. |
| 77 | // e.g. `registryURI` most be known for the library service to facilitate OCI-SIF push/pull/ |
| 78 | configMap map[string]string |
| 79 | } |
| 80 | |
| 81 | // URI returns the service URI. |
| 82 | func (s *service) URI() string { |
nothing calls this directly
no outgoing calls
no test coverage detected