12 lines
131 B
Go
12 lines
131 B
Go
package utils
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestAliIpAddress(t *testing.T) {
|
|
|
|
fmt.Println(AliIpAddress("58.208.146.190"))
|
|
}
|