Files
gluetun/internal/tun/create_unspecified.go

9 lines
167 B
Go
Raw Normal View History

//go:build !linux && !darwin
package tun
// Create creates a TUN device at the path specified.
func (t *Tun) Create(path string) error {
panic("not implemented")
}