netbird/iface/tun.go

7 lines
124 B
Go
Raw Normal View History

package iface
// NetInterface represents a generic network tunnel interface
type NetInterface interface {
Close() error
}