手机归属地分配

This commit is contained in:
邹宗楠
2023-03-10 18:00:44 +08:00
parent c53cdbab87
commit 2c59e9d313
2 changed files with 13 additions and 652 deletions

View File

@@ -0,0 +1,13 @@
package ascription_place
import (
"fmt"
"github.com/xluohome/phonedata"
"testing"
)
func TestAscriptionPlace(t *testing.T) {
p, err := phonedata.Find("18744776542")
fmt.Println(p)
fmt.Println(err)
}