14 lines
195 B
Go
14 lines
195 B
Go
package tiktok_store
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
//创建运费模板
|
|
func TestCreateFreight(t *testing.T) {
|
|
data, err := CreateFreightTemplate(668504)
|
|
fmt.Println(data)
|
|
fmt.Println(err)
|
|
}
|