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