~rogpeppe/juju-core/387-use-testing-set

« back to all changes in this revision

Viewing changes to state/machine.go

  • Committer: Ian Booth
  • Date: 2013-08-21 05:38:38 UTC
  • mto: (1603.8.2 simplify-tools-search)
  • mto: This revision was merged to the branch mainline in revision 1702.
  • Revision ID: ian.booth@canonical.com-20130821053838-3c9oahds4mg2u0l7
Pull out Tools struct to its own package

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
        "labix.org/v2/mgo"
12
12
        "labix.org/v2/mgo/txn"
13
13
 
14
 
        "launchpad.net/juju-core/agent/tools"
15
14
        "launchpad.net/juju-core/constraints"
16
15
        "launchpad.net/juju-core/errors"
17
16
        "launchpad.net/juju-core/instance"
18
17
        "launchpad.net/juju-core/names"
19
18
        "launchpad.net/juju-core/state/api/params"
20
19
        "launchpad.net/juju-core/state/presence"
 
20
        "launchpad.net/juju-core/tools"
21
21
        "launchpad.net/juju-core/utils"
22
22
)
23
23