mirror of
https://github.com/bettercap/bettercap
synced 2025-07-16 10:03:39 -07:00
11 lines
91 B
Go
11 lines
91 B
Go
package vhost
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
type Conn interface {
|
|
net.Conn
|
|
Host() string
|
|
Free()
|
|
}
|