Files
baseapi/platformapi/mtwmapi/im_test.go
2020-08-20 09:01:47 +08:00

14 lines
200 B
Go

package mtwmapi
import (
"testing"
)
func TestGetConnectionToken(t *testing.T) {
err := api.GetConnectionToken()
if err != nil {
t.Fatal(err)
}
// t.Log(utils.Format4Output(result, false))
}