mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 11:00:27 +00:00
22 lines
318 B
Go
22 lines
318 B
Go
|
package model
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"io"
|
||
|
)
|
||
|
|
||
|
type GatewayResponse struct {
|
||
|
Status string `json:"janus"`
|
||
|
}
|
||
|
|
||
|
func GatewayResponseFromJson(data io.Reader) *GatewayResponse {
|
||
|
decoder := json.NewDecoder(data)
|
||
|
var o GatewayResponse
|
||
|
err := decoder.Decode(&o)
|
||
|
if err == nil {
|
||
|
return &o
|
||
|
} else {
|
||
|
return nil
|
||
|
}
|
||
|
}
|