(oref string)
| 22 | const ConnContextTimeout = 60 * time.Second |
| 23 | |
| 24 | func parseORef(oref string) (*waveobj.ORef, error) { |
| 25 | fields := strings.Split(oref, ":") |
| 26 | if len(fields) != 2 { |
| 27 | return nil, fmt.Errorf("invalid object reference: %q", oref) |
| 28 | } |
| 29 | return &waveobj.ORef{OType: fields[0], OID: fields[1]}, nil |
| 30 | } |
| 31 | |
| 32 | func (svc *ObjectService) GetObject_Meta() tsgenmeta.MethodMeta { |
| 33 | return tsgenmeta.MethodMeta{ |
no outgoing calls
no test coverage detected