feat:完善网站信息

This commit is contained in:
henry
2021-12-22 14:11:14 +08:00
parent b0a9ef3569
commit 332f67d1c1
14 changed files with 637 additions and 28 deletions

7
app/logic/ies.go Normal file
View File

@ -0,0 +1,7 @@
package logic
type IES interface {
Index() string
Create() error
Search(condition map[string]interface{}) (interface{}, error)
}