2020-03-22 16:12:55 +01:00
|
|
|
// Copyright 2017 The Xorm Authors. All rights reserved.
|
2019-06-23 17:22:43 +02:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2020-03-22 16:12:55 +01:00
|
|
|
package convert
|
2016-11-03 23:16:01 +01:00
|
|
|
|
|
|
|
// 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)
|
|
|
|
}
|