// This file was auto-generated by the veyron vdl tool. | |
// Source: schema.vdl | |
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 | |
} |