mirror of
https://github.com/netbirdio/netbird.git
synced 2025-02-04 12:29:23 +01:00
7 lines
124 B
Go
7 lines
124 B
Go
|
package iface
|
||
|
|
||
|
// NetInterface represents a generic network tunnel interface
|
||
|
type NetInterface interface {
|
||
|
Close() error
|
||
|
}
|