package excel_import import ( "fmt" "testing" ) func TestCut(t *testing.T) { data := [][]string{{"a", "b", "c"}, {"d", "e", "f"}, {"d", "e", "f"}, {"d", "e", "f"}, {"d", "e", "f"}} fmt.Println(data[1:]) } func TestTaskInfo(t *testing.T) { NewImportExcel("goods_import").GetTaskInfo("1727160398921095702") }