graphql-engine/cli/seed/seed.go

18 lines
324 B
Go
Raw Normal View History

package seed
import (
"io"
"github.com/hasura/graphql-engine/cli/internal/hasura"
)
type sendBulk func([]hasura.RequestBody) (io.Reader, error)
type Driver struct {
SendBulk sendBulk
PGDumpClient hasura.PGDump
}
func NewDriver(s sendBulk, pgDumpClient hasura.PGDump) *Driver {
return &Driver{s, pgDumpClient}
}