blob: 4596d4921919ab358b3e721363214989d1d709c2 (
plain)
1
2
3
4
5
6
7
8
|
package dmpkg
// NewPing construct a new PING exahange.
func NewPing() (exc DanmakuExchange) {
// compliant with Bilibili webapp behavior
exc, _ = NewPlainExchange(OpHeartbeat, "[object Object]")
return
}
|