1
0
forked from x/icebergs
icebergs/core/team/team.go
2022-10-20 09:40:40 +08:00

13 lines
245 B
Go

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