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

18 lines
414 B
Go

package builder
import (
"github.com/nesterow/dal/pkg/adapter"
"github.com/nesterow/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