You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package open_im_media
|
|
|
|
const (
|
|
// Address gRPC服务地址
|
|
Address = "127.0.0.1:11300"
|
|
)
|
|
|
|
type Media struct {
|
|
}
|
|
|
|
func NewMedia() *Media {
|
|
return &Media{}
|
|
}
|
|
|
|
func init() {
|
|
|
|
}
|
|
|
|
func (m *Media) CreateRoom(roomName string) (error, error) {
|
|
return nil, nil
|
|
|
|
}
|