(ctx context.Context, id string)
| 426 | } |
| 427 | |
| 428 | func (s *imlReleaseService) GetRelease(ctx context.Context, id string) (*Release, error) { |
| 429 | r, err := s.releaseStore.GetByUUID(ctx, id) |
| 430 | if err != nil { |
| 431 | return nil, err |
| 432 | } |
| 433 | return FromEntity(r), nil |
| 434 | } |
| 435 | |
| 436 | // |
| 437 | //func (s *imlReleaseService) Diff(ctx context.Context, baseReleaseId string, targetReleaseId string) (*Diff, error) { |
no test coverage detected