adding vendor folder

This commit is contained in:
evilsocket 2018-03-23 15:25:11 +01:00
parent 49c65021ea
commit c304ca4696
No known key found for this signature in database
GPG key ID: 1564D7F30393A456
1145 changed files with 369961 additions and 2 deletions

View file

@ -0,0 +1,11 @@
package vhost
import (
"net"
)
type Conn interface {
net.Conn
Host() string
Free()
}