dal/pkg/builder/types.go

18 lines
414 B
Go
Raw Normal View History

package builder
import (
2024-08-20 19:10:21 +00:00
"github.com/nesterow/dal/pkg/adapter"
"github.com/nesterow/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