This commit is contained in:
richboo111
2022-10-10 09:58:12 +08:00
parent faa407a918
commit ec7896d94f
5 changed files with 144 additions and 60 deletions

View File

@@ -0,0 +1,13 @@
package tiktok_store
import (
"fmt"
"testing"
)
//创建运费模板
func TestCreateFreight(t *testing.T) {
data, err := CreateFreightTemplate(668504)
fmt.Println(data)
fmt.Println(err)
}