dal/pkg/adapter/types.go

11 lines
190 B
Go
Raw Normal View History

package adapter
type CtxOpts map[string]string
type Context interface {
New(opts CtxOpts) Context
GetTableName() string
GetFieldName() string
NormalizeValue(interface{}) interface{}
}