mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
6 lines
105 B
Go
6 lines
105 B
Go
package database
|
|
|
|
type SchemaDriver interface {
|
|
ExportSchemaDump(schemaName []string) ([]byte, error)
|
|
}
|