2022-01-21 18:39:57 +08:00
|
|
|
package message
|
|
|
|
|
|
|
|
|
|
import (
|
2022-02-07 08:44:21 +08:00
|
|
|
openIMHttp "Open_IM/pkg/common/http"
|
2022-01-21 18:39:57 +08:00
|
|
|
|
2022-02-07 08:44:21 +08:00
|
|
|
"Open_IM/pkg/common/constant"
|
2022-01-24 01:40:49 +08:00
|
|
|
|
2022-02-07 08:44:21 +08:00
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
|
)
|
2022-01-24 01:40:49 +08:00
|
|
|
|
2022-02-07 08:44:21 +08:00
|
|
|
func BroadcastMessage(c *gin.Context) {
|
|
|
|
|
openIMHttp.RespHttp200(c, constant.OK, nil)
|
2022-01-21 18:39:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func MassSendMassage(c *gin.Context) {
|
2022-02-07 08:44:21 +08:00
|
|
|
openIMHttp.RespHttp200(c, constant.OK, nil)
|
2022-01-21 18:39:57 +08:00
|
|
|
}
|
|
|
|
|
|
2022-02-07 08:44:21 +08:00
|
|
|
func WithdrawMessage(c *gin.Context) {
|
|
|
|
|
openIMHttp.RespHttp200(c, constant.OK, nil)
|
2022-01-21 18:39:57 +08:00
|
|
|
}
|