(key *ari.Key)
| 17 | } |
| 18 | |
| 19 | func (a *application) Data(key *ari.Key) (*ari.ApplicationData, error) { |
| 20 | ret, err := a.c.dataRequest(&proxy.Request{ |
| 21 | Kind: "ApplicationData", |
| 22 | Key: key, |
| 23 | }) |
| 24 | if err != nil { |
| 25 | return nil, err |
| 26 | } |
| 27 | return ret.Application, nil |
| 28 | } |
| 29 | |
| 30 | func (a *application) Get(key *ari.Key) *ari.ApplicationHandle { |
| 31 | k, err := a.c.getRequest(&proxy.Request{ |
nothing calls this directly
no test coverage detected