~rogpeppe/juju-core/323-machineagent-api-client

« back to all changes in this revision

Viewing changes to environs/azure/instance.go

  • Committer: Tarmac
  • Author(s): Tim Penhey
  • Date: 2013-06-17 22:06:54 UTC
  • mfrom: (1274.3.10 instance-id)
  • Revision ID: tarmac-20130617220654-1d7y34f00629h8cv
[r=thumper] Move state.InstanceId to instance.Id

Very mechanical change, just imports, and occasional variable renames.

https://codereview.appspot.com/10325043/

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
import (
7
7
        "launchpad.net/juju-core/instance"
8
 
        "launchpad.net/juju-core/state"
9
8
        "launchpad.net/juju-core/state/api/params"
10
9
)
11
10
 
15
14
var _ instance.Instance = (*azureInstance)(nil)
16
15
 
17
16
// Id is specified in the Instance interface.
18
 
func (instance *azureInstance) Id() state.InstanceId {
 
17
func (instance *azureInstance) Id() instance.Id {
19
18
        panic("unimplemented")
20
19
}
21
20