12 lines
136 B
Go
12 lines
136 B
Go
package tools
|
|
|
|
import (
|
|
"log"
|
|
"testing"
|
|
)
|
|
|
|
func TestGetOutboundIP(t *testing.T) {
|
|
ip, err := GetOutboundIP()
|
|
log.Println(ip, err)
|
|
}
|