Sign in
vanadium
/
release.go.x.ref
/
8b6e1ea2671419abbddf434abc4cdf71b540eb40
/
.
/
examples
/
bank
/
schema
/
init.go
blob: 2040e0fb88ad56d28e24c5d6f76b61fb60232296 [
file
] [
log
] [
blame
]
// This schema registers structs used in the bank example to the VOM for the Veyron store.
package schema
import (
"veyron2/vom"
)
func init() {
vom.Register(&Dir{})
vom.Register(&Bank{})
}