1
0
forked from x/icebergs
icebergs/core/team/team.go
2021-10-30 15:14:41 +08:00

13 lines
233 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, TASK, PLAN) }