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 | |
} |