mdbc/indexes.go
2023-06-22 23:14:51 +08:00

27 lines
418 B
Go

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
}