bench-forgejo/vendor/github.com/go-xorm/core/converstion.go

9 lines
236 B
Go
Raw Normal View History

2016-11-04 03:46:01 +05:30
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)
}