mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 08:44:07 +01:00
b726b3262d
add codespell workflow and fixed spelling issues
8 lines
260 B
Go
8 lines
260 B
Go
package iface
|
|
|
|
// TunAdapter is an interface for create tun device from external service
|
|
type TunAdapter interface {
|
|
ConfigureInterface(address string, mtu int, dns string, searchDomains string, routes string) (int, error)
|
|
UpdateAddr(address string) error
|
|
}
|