dal/pkg/builder/types.go
2024-08-29 21:10:29 +02:00

18 lines
394 B
Go

package builder
import (
"l12.xyz/x/dal/pkg/adapter"
"l12.xyz/x/dal/pkg/filters"
)
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