Files
gluetun/internal/unix/constants.go
2021-02-06 17:16:58 +00:00

10 lines
179 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 //nolint:golint
)