mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
f6ca551df4
GitOrigin-RevId: 4b1a63c8dc342ae4001b16c4b1dce282092d5c6f
8 lines
217 B
Go
8 lines
217 B
Go
package database
|
|
|
|
import "github.com/hasura/graphql-engine/cli/internal/hasura"
|
|
|
|
type SchemaDriver interface {
|
|
ExportSchemaDump(schemaName []string, sourceName string, sourceKind hasura.SourceKind) ([]byte, error)
|
|
}
|