init commit

This commit is contained in:
2025-09-27 10:17:16 +08:00
commit 7eee7bcd3b
1022 changed files with 78271 additions and 0 deletions
File diff suppressed because it is too large Load Diff
+14
View File
@@ -0,0 +1,14 @@
package countryCenter
import (
"testing"
)
func TestGetCountryCenter(t *testing.T) {
lat, lon, found := GetCountryCenterByCountryOrCity("SG", "Singapore")
if !found {
t.Error("GetCountryCenter('HK') should return found = true")
}
t.Logf("lat = %v, lon = %v", lat, lon)
}