forked from x/icebergs
13 lines
260 B
Go
13 lines
260 B
Go
package macos
|
|
|
|
import (
|
|
ice "shylinux.com/x/icebergs"
|
|
)
|
|
|
|
func init() {
|
|
const CLOCK = "clock"
|
|
Index.MergeCommands(ice.Commands{
|
|
CLOCK: {Name: "clock refresh", Icon: "usr/icons/Clock.png", Hand: func(m *ice.Message, arg ...string) { m.Display("") }},
|
|
})
|
|
}
|