blob: f4648eec4ca2da748d6a72ae0dc8227b46ece964 [file] [log] [blame]
package server
import (
"veyron2/services/store"
)
// Named 'storeThing' instead of 'thing' so that the struct in thing.go can be
// named 'thing'.
type storeThing interface {
store.DirSpecific
store.ObjectSpecific
store.DirOrObject
store.Transaction
}