blob: f23b0fc64c2ab77622078756be71dcbabdd7aa1f [file] [log] [blame]
package schema
import (
"veyron.io/store/veyron2/storage"
)
// User contains the information corresponding to a particular UserName in the store.
type User struct {
Name string
}
// FortuneData contains the information regarding a fortune.
type FortuneData struct {
Fortune string
UserName storage.ID
}