mirror of
https://github.com/injoyai/tdx.git
synced 2025-11-26 21:25:35 +08:00
13 lines
170 B
Go
13 lines
170 B
Go
package main
|
|
|
|
import (
|
|
"github.com/injoyai/logs"
|
|
"github.com/injoyai/tdx"
|
|
)
|
|
|
|
func main() {
|
|
c, err := tdx.Dial("122.51.120.217:7709")
|
|
logs.PanicErr(err)
|
|
<-c.Done()
|
|
}
|