mirror of
https://github.com/injoyai/tdx.git
synced 2025-11-26 21:25:35 +08:00
12 lines
178 B
Go
12 lines
178 B
Go
package main
|
|
|
|
import (
|
|
"github.com/injoyai/logs"
|
|
"github.com/injoyai/tdx"
|
|
)
|
|
|
|
func main() {
|
|
_, err := tdx.DialHostsRange([]string{"1", "2", "127.0.0.1"})
|
|
logs.PrintErr(err)
|
|
}
|