1
0
forked from x/icebergs
icebergs/core/team/team.go
2024-04-15 12:25:16 +08:00

16 lines
354 B
Go

package team
import (
ice "shylinux.com/x/icebergs"
"shylinux.com/x/icebergs/base/web"
kit "shylinux.com/x/toolkits"
)
const TEAM = "team"
var Index = &ice.Context{Name: TEAM, Help: "团队中心"}
func init() { web.Index.Register(Index, nil, TODO, EPIC, TASK, PLAN) }
func Prefix(arg ...string) string { return web.Prefix(TEAM, kit.Keys(arg)) }