~fwereade/pyjuju/go-jujuc

« back to all changes in this revision

Viewing changes to state/machine.go

  • Committer: William Reade
  • Date: 2012-03-13 10:24:15 UTC
  • mfrom: (83.1.4 go-cmd-server-package)
  • Revision ID: fwereade@gmail.com-20120313102415-irg07nn1knvr7beh
merge parent

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
import (
8
8
        "fmt"
9
 
        "launchpad.net/gozk/zookeeper"
10
9
        "strconv"
11
10
        "strings"
12
11
)
13
12
 
14
13
// Machine represents the state of a machine.
15
14
type Machine struct {
16
 
        zk  *zookeeper.Conn
 
15
        st  *State
17
16
        key string
18
17
}
19
18