b72e67badc
Signed-off-by: Anton Nesterov <anton@demiurg.io>
11 lines
190 B
Go
11 lines
190 B
Go
package adapter
|
|
|
|
type CtxOpts map[string]string
|
|
|
|
type Context interface {
|
|
New(opts CtxOpts) Context
|
|
GetTableName() string
|
|
GetFieldName() string
|
|
NormalizeValue(interface{}) interface{}
|
|
}
|