feat:完善项目

This commit is contained in:
henry
2021-11-08 11:09:27 +08:00
parent 85b58968d1
commit 1502076841
20 changed files with 397 additions and 32 deletions

20
app/handle/notice.go Normal file
View File

@ -0,0 +1,20 @@
package handle
import "encoding/json"
type WorkNotice struct {
Prefix string `json:"prefix"`
Message interface{} `json:"message"`
}
func (this *WorkNotice) ToBytes() []byte {
out, _ := json.Marshal(this)
return out
}
func NewWorkNotice(msg interface{}) *WorkNotice {
return &WorkNotice{
Prefix: "work",
Message: msg,
}
}