~ubuntu-branches/ubuntu/saucy/juju-core/saucy-updates

« back to all changes in this revision

Viewing changes to src/launchpad.net/juju-core/worker/minunitsworker/minunitsworker.go

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2013-09-03 14:22:22 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20130903142222-9mes2r8wqr0bs7lp
Tags: 1.13.3-0ubuntu1
New upstream point release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
        "launchpad.net/loggo"
8
8
 
9
9
        "launchpad.net/juju-core/state"
10
 
        "launchpad.net/juju-core/state/api"
 
10
        "launchpad.net/juju-core/state/api/watcher"
11
11
        "launchpad.net/juju-core/worker"
12
12
)
13
13
 
26
26
        return worker.NewStringsWorker(mu)
27
27
}
28
28
 
29
 
func (mu *MinUnitsWorker) SetUp() (api.StringsWatcher, error) {
 
29
func (mu *MinUnitsWorker) SetUp() (watcher.StringsWatcher, error) {
30
30
        return mu.st.WatchMinUnits(), nil
31
31
}
32
32