1
0
mirror of https://shylinux.com/x/icebergs synced 2025-04-27 01:48:27 +08:00
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) }