- mtwmapi

This commit is contained in:
gazebo
2018-11-22 10:21:16 +08:00
parent 5a43ff8e20
commit 684a104a25
14 changed files with 1044 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package mtwmapi
import (
"testing"
)
func TestOrderViewStatus(t *testing.T) {
result, err := api.OrderViewStatus(9)
if err != nil {
t.Fatal(err)
}
t.Log(result)
}