dal/pkg/builder/types.go

18 lines
394 B
Go
Raw Normal View History

package builder
import (
"l12.xyz/x/dal/pkg/adapter"
"l12.xyz/x/dal/pkg/filters"
)
2024-08-16 18:10:34 +00:00
type RawSql = map[string]interface{}
type CommonDialect = adapter.CommonDialect
type Map = map[string]interface{}
type Fields = Map
type Find = filters.Find
type Query = filters.Find
type Filter = filters.Filter
type Is = filters.Filter
type Dialect = adapter.Dialect
type DialectOpts = adapter.DialectOpts