mirror of
https://github.com/zhigang1992/graphql-engine.git
synced 2026-06-10 23:48:57 +08:00
6 lines
105 B
Go
6 lines
105 B
Go
package database
|
|
|
|
type SchemaDriver interface {
|
|
ExportSchemaDump(schemaName []string) ([]byte, error)
|
|
}
|