mirror of
https://github.com/qdm12/gluetun.git
synced 2026-06-10 06:12:27 +02:00
13 lines
155 B
Go
13 lines
155 B
Go
//go:build !linux && !darwin
|
|
|
|
package tun
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
)
|
|
|
|
func Setup() error {
|
|
return fmt.Errorf("not implemented for %s", runtime.GOOS)
|
|
}
|