1
0
forked from x/icebergs
icebergs/core/code/repos.go
2023-03-14 13:40:53 +08:00

16 lines
319 B
Go

package code
import (
ice "shylinux.com/x/icebergs"
"shylinux.com/x/icebergs/base/nfs"
)
const REPOS = nfs.REPOS
func init() {
const GIT_REPOS = "web.code.git.repos"
Index.MergeCommands(ice.Commands{
REPOS: {Name: "repos name auto", Hand: func(m *ice.Message, arg ...string) { m.Cmdy(GIT_REPOS, arg) }},
})
}