mdbc/indexes.go

27 lines
418 B
Go
Raw Normal View History

2023-06-22 15:14:51 +00:00
package mdbc
import "context"
type indexesScope struct {
*scope
*mdbc
ctx context.Context
}
func (is *indexesScope) SetContext(ctx context.Context) *indexesScope {
is.ctx = ctx
return is
}
func (is *indexesScope) Create(ctx context.Context) error {
return nil
}
func (is *indexesScope) Drop(ctx context.Context) error {
return nil
}
func (is *indexesScope) List(ctx context.Context) error {
return nil
}