Sign in
vanadium
/
release.go.x.ref
/
778cb7ec1695002cb5f2c6f0b65a71a22c0fbc59
/
.
/
examples
/
todos
/
schema
/
init.go
blob: 9b6695ab7d07de1f92826040838dcf704a4cff48 [
file
] [
log
] [
blame
]
// Package schema defines a schema for a todos application.
package schema
import (
"veyron2/vom"
)
func init() {
vom.Register(&Dir{})
vom.Register(&List{})
vom.Register(&Item{})
}