ai-css/tools/ip_test.go
2026-01-28 22:42:06 +08:00

12 lines
136 B
Go

package tools
import (
"log"
"testing"
)
func TestGetOutboundIP(t *testing.T) {
ip, err := GetOutboundIP()
log.Println(ip, err)
}