mirror of
https://github.com/qdm12/gluetun.git
synced 2025-12-13 03:03:22 -06:00
9 lines
167 B
Go
9 lines
167 B
Go
//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")
|
|
}
|