mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-11-28 15:31:20 +08:00
13 lines
181 B
Go
13 lines
181 B
Go
package main
|
|
|
|
import "net"
|
|
//import "time"
|
|
|
|
func main() {
|
|
c, err := net.Dial("unix", "", "/tmp/das")
|
|
if err != nil {
|
|
panic(err.String())
|
|
}
|
|
defer c.close()
|
|
}
|