feat:完善项目管理,增加网站首页接口信息

This commit is contained in:
henry
2021-12-15 14:31:14 +08:00
parent 3c55143278
commit ba62a25e4b
21 changed files with 471 additions and 50 deletions

View File

@ -0,0 +1,13 @@
package controller
type Docking struct{}
type DockingHandle func()
func (c *Docking) Message() {
}
func NewDocking() DockingHandle {
return nil
}