- mobile sms verify added.

This commit is contained in:
gazebo
2018-09-05 18:03:53 +08:00
parent 76b03bf86f
commit 0faaa6b366
7 changed files with 119 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package mobile
import (
"testing"
)
func TestSendVerifyCode(t *testing.T) {
err := SendVerifyCode("18180948107")
if err != nil {
t.Fatal(err)
}
}