2020-08-25 15:38:35 +08:00
|
|
|
package reader
|
|
|
|
|
2020-09-01 20:50:12 +08:00
|
|
|
import (
|
2020-09-09 15:24:07 +08:00
|
|
|
msgPb "github.com/czs007/suvlim/pkg/message"
|
2020-09-01 20:50:12 +08:00
|
|
|
)
|
2020-08-25 15:38:35 +08:00
|
|
|
|
|
|
|
type IndexConfig struct {}
|
|
|
|
|
2020-09-09 15:24:07 +08:00
|
|
|
func buildIndex(config IndexConfig) msgPb.Status {
|
|
|
|
return msgPb.Status{ErrorCode: msgPb.ErrorCode_SUCCESS}
|
2020-08-25 15:38:35 +08:00
|
|
|
}
|
|
|
|
|
2020-09-09 15:24:07 +08:00
|
|
|
func dropIndex(fieldName string) msgPb.Status {
|
|
|
|
return msgPb.Status{ErrorCode: msgPb.ErrorCode_SUCCESS}
|
2020-08-25 15:38:35 +08:00
|
|
|
}
|