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