- ebai callback.

This commit is contained in:
gazebo
2018-09-27 17:53:03 +08:00
parent a4fb6880de
commit 303bca1193
4 changed files with 221 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
package ebaiapi
import (
"testing"
"git.rosy.net.cn/baseapi/utils"
)
func TestOrderGet(t *testing.T) {
result, err := api.OrderGet("15380342248732")
if err != nil {
t.Fatal(err)
} else {
t.Log(utils.Format4Output(result, false))
}
}