blob: c87ae0d9eef37b1ec0dcf547af257776f11e077b [file] [log] [blame]
package schema
import (
"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
}