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