mirror of
https://github.com/zhigang1992/graphql-engine.git
synced 2026-05-24 08:54:11 +08:00
14 lines
214 B
Go
14 lines
214 B
Go
package database
|
|
|
|
type MetadataDriver interface {
|
|
ExportMetadata() (interface{}, error)
|
|
|
|
ResetMetadata() error
|
|
|
|
ReloadMetadata() error
|
|
|
|
ApplyMetadata(data interface{}) error
|
|
|
|
Query(data []interface{}) error
|
|
}
|