blob: 716da9450b451fddb90cbc7b18b2b0da12b3f834 [file] [log] [blame]
Benjamin Prosnitz318f0212014-06-09 14:50:07 -07001package lib
2
3import (
Robin Thellend892aac42014-06-11 11:09:27 -07004 rps "veyron/examples/rockpaperscissors"
5 "veyron2/services/mounttable"
Benjamin Prosnitz318f0212014-06-09 14:50:07 -07006 "veyron2/services/store"
7 "veyron2/services/watch"
8 "veyron2/vom"
9)
10
11func init() {
Robin Thellend892aac42014-06-11 11:09:27 -070012 vom.Register(mounttable.MountEntry{})
Benjamin Prosnitz318f0212014-06-09 14:50:07 -070013 vom.Register(store.Conflict{})
14 vom.Register(store.Entry{})
15 vom.Register(store.NestedResult(0))
16 vom.Register(store.QueryResult{})
17 vom.Register(store.Stat{})
18 vom.Register(store.TransactionID(0))
Tilak Sharma86571322014-06-11 14:15:07 -070019 vom.Register(watch.GlobRequest{})
20 vom.Register(watch.QueryRequest{})
Benjamin Prosnitz318f0212014-06-09 14:50:07 -070021 vom.Register(watch.ChangeBatch{})
22 vom.Register(watch.Change{})
Robin Thellend892aac42014-06-11 11:09:27 -070023 vom.Register(rps.GameOptions{})
24 vom.Register(rps.GameID{})
25 vom.Register(rps.PlayResult{})
26 vom.Register(rps.PlayerAction{})
27 vom.Register(rps.JudgeAction{})
28
Benjamin Prosnitz318f0212014-06-09 14:50:07 -070029}