no message

master
zcy 2021-12-09 00:52:31 +08:00
parent e177f9d138
commit 0d00588976
2 changed files with 68 additions and 69 deletions

View File

@ -94,8 +94,8 @@ func InitLogs() {
}
type WsHandle struct {
}
func (this WsHandle) OnDisConected(*network.ConnectionContext) {
}
@ -107,7 +107,6 @@ func (this WsHandle) OnDataRecv(p *network.ConnectionContext, dat []byte) {
logger.LogRealeaseInfo(string(dat))
}
func main() {
InitConfig()
InitLogs()
@ -189,7 +188,6 @@ func main() {
api.GET("/memo", controller.GetMemo) // 单独读取备忘录
api.GET("/memocnt", controller.GetMemoCnt) // 单独读取备忘录
api.GET("doc_groups", controller.GetDocGroup) // 获取所有的文章分组
api.POST("type_group", controller.GetDocTypeGroup) // 获取类所在的组
api.POST("group_type", controller.GetDoGroupcType) // 获取类所在的组

View File

@ -153,6 +153,7 @@ func DeleteArticleType(id int32) error {
return nil
}
func GetAllDocs() ([]Doc, error) {
ret := []Doc{}
sql := fmt.Sprintf("select * from doc")