mirror of
https://shylinux.com/x/icebergs
synced 2025-04-27 09:48:28 +08:00
12 lines
219 B
Go
12 lines
219 B
Go
package mdb
|
|
|
|
import (
|
|
ice "shylinux.com/x/icebergs"
|
|
)
|
|
|
|
const SEARCH = "search"
|
|
|
|
func init() {
|
|
Index.MergeCommands(ice.Commands{SEARCH: {Name: "search type name text auto", Help: "搜索", Actions: RenderAction()}})
|
|
}
|