Sign in
vanadium
/
release.go.x.ref
/
3ed3024db7740bf3ff574871668d339b69453ca3
/
.
/
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{})
}