Files
open-im-server/internal/msg_gateway/gate/open_im_media/room.go
T

23 lines
259 B
Go
Raw Normal View History

2023-06-29 22:35:31 +08:00
package open_im_media
const (
// Address gRPC服务地址
Address = "127.0.0.1:11300"
)
type Media struct {
}
func NewMedia() *Media {
return &Media{}
}
func init() {
2022-07-27 11:49:00 +08:00
2023-06-29 22:35:31 +08:00
}
func (m *Media) CreateRoom(roomName string) (error, error) {
return nil, nil
}