10 lines
182 B
Go
10 lines
182 B
Go
package model
|
|
|
|
type ESReqRes struct {
|
|
ClientRequest bool // 是否是 es client 的请求
|
|
Path string
|
|
Method string
|
|
Indixes []string
|
|
Api ESApi
|
|
}
|