Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 // | 1 // |
2 // goamz - Go packages to interact with the Amazon Web Services. | 2 // goamz - Go packages to interact with the Amazon Web Services. |
3 // | 3 // |
4 // https://wiki.ubuntu.com/goamz | 4 // https://wiki.ubuntu.com/goamz |
5 // | 5 // |
6 // Copyright (c) 2011 Canonical Ltd. | 6 // Copyright (c) 2011 Canonical Ltd. |
7 // | 7 // |
8 // Written by Gustavo Niemeyer <gustavo.niemeyer@canonical.com> | 8 // Written by Gustavo Niemeyer <gustavo.niemeyer@canonical.com> |
9 // | 9 // |
10 package ec2 | 10 package ec2 |
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
484 } | 484 } |
485 } | 485 } |
486 | 486 |
487 resp = &SimpleResp{} | 487 resp = &SimpleResp{} |
488 err = ec2.query(params, resp) | 488 err = ec2.query(params, resp) |
489 if err != nil { | 489 if err != nil { |
490 return nil, err | 490 return nil, err |
491 } | 491 } |
492 return resp, nil | 492 return resp, nil |
493 } | 493 } |
LEFT | RIGHT |