mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 04:20:12 +02:00
7058373916
- Used for creating the tun device if it does not exist - Mocks generated for testing
10 lines
163 B
Go
10 lines
163 B
Go
package unix
|
|
|
|
import sysunix "golang.org/x/sys/unix"
|
|
|
|
// Constants used for convenience so "os" does not have to be imported
|
|
|
|
const (
|
|
S_IFCHR = sysunix.S_IFCHR
|
|
)
|