(orgSlug, serviceSlug string)
| 331 | } |
| 332 | |
| 333 | func getServicePath(orgSlug, serviceSlug string) string { |
| 334 | return "/orgs/" + url.QueryEscape(orgSlug) + "/services/" + url.QueryEscape(serviceSlug) |
| 335 | } |
| 336 | |
| 337 | func (s *Session) GetService(ctx context.Context, orgSlug, serviceSlug string) (*Service, error) { |
| 338 | var svc Service |