27 lines
432 B
Go
27 lines
432 B
Go
package mdbc
|
|
|
|
import "context"
|
|
|
|
type indexesScope struct {
|
|
scope *scope
|
|
mdbc *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
|
|
}
|