mirror of
https://shylinux.com/x/icebergs
synced 2025-04-26 01:24:05 +08:00
14 lines
207 B
Go
14 lines
207 B
Go
package log
|
|
|
|
import (
|
|
ice "shylinux.com/x/icebergs"
|
|
)
|
|
|
|
const BENCH = "bench"
|
|
|
|
func init() {
|
|
Index.MergeCommands(ice.Commands{
|
|
BENCH: {Help: "记录", Hand: func(m *ice.Message, arg ...string) {}},
|
|
})
|
|
}
|