8 lines
133 B
Go
8 lines
133 B
Go
![]() |
package logic
|
||
|
|
||
|
type IES interface {
|
||
|
Index() string
|
||
|
Create() error
|
||
|
Search(condition map[string]interface{}) (interface{}, error)
|
||
|
}
|