This repository has been archived on 2020-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/converstion.go

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