1
1
mirror of https://github.com/go-gitea/gitea synced 2024-07-03 08:35:49 +00:00
gitea/vendor/github.com/go-xorm/core/converstion.go
2016-11-04 08:43:11 +01:00

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