ai-css/tools/ip_test.go
2026-02-12 08:50:11 +00:00

12 lines
136 B
Go

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