27 lines
418 B
Go
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
|
||
|
}
|