This commit is contained in:
2026-07-21 03:49:47 +03:00
commit e8a0b2ba42
65 changed files with 40163 additions and 0 deletions

15
tennis_api_test.go Normal file
View File

@@ -0,0 +1,15 @@
package flashscore
/*
func TestLoadTennisMatchStat(t *testing.T) {
stat, err := LoadTennisMatchStat("6V2F8wIB")
if err != nil {
t.Log(err)
t.Failed()
} else {
buf, _ := json.MarshalIndent(stat, "", " ")
fmt.Printf("LoadTennisMatchStat: %s\n", buf)
}
}
*/