添加向特定用户发送信息功能

This commit is contained in:
2025-08-11 15:35:52 +08:00
parent ba655a6aba
commit 23592df471
4 changed files with 150 additions and 26 deletions

View File

@@ -0,0 +1,9 @@
package systemmodel
type MsgSend struct {
Username string `json:"username"`
Msg struct {
Type string `json:"type"`
Content string `json:"content"`
} `json:"msg"`
}