jet/postgres/table.go

10 lines
217 B
Go
Raw Normal View History

2019-08-03 14:10:47 +02:00
package postgres
import "github.com/go-jet/jet/internal/jet"
type Table jet.Table
func NewTable(schemaName, name string, columns ...jet.Column) Table {
return jet.NewTable(Dialect, schemaName, name, columns...)
}