0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-09-07 01:45:54 +02:00
gitea/vendor/github.com/go-xorm/core/converstion.go
2016-11-04 08:43:11 +01:00

8 lines
236 B
Go

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)
}