- ugc api of ebai

This commit is contained in:
gazebo
2019-02-18 16:39:03 +08:00
parent ba576e8202
commit fca8851475
2 changed files with 59 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package ebaiapi
import (
"testing"
"git.rosy.net.cn/baseapi"
"git.rosy.net.cn/baseapi/utils"
)
func TestOrderRatesGet(t *testing.T) {
commentList, err := api.OrderRatesGet("100119", 0, utils.DefaultTimeValue, utils.DefaultTimeValue, -1)
if err != nil {
t.Fatal(err)
}
baseapi.SugarLogger.Debug(utils.Format4Output(commentList, false))
}