type Resource interface { Status() Status } type Status interface { Ready() bool }
type Statuser interface { Status() Status } type Readyer interface { Ready() bool }