xorm/converstion.go

9 lines
236 B
Go
Raw Permalink Normal View History

2014-04-08 12:57:04 +00:00
package core
// Conversion is an interface. A type implements Conversion will according
// the custom method to fill into database and retrieve from database.
type Conversion interface {
FromDB([]byte) error
ToDB() ([]byte, error)
}