Files
gluetun/internal/unix/constants.go

10 lines
179 B
Go
Raw Normal View History

package unix
import sysunix "golang.org/x/sys/unix"
// Constants used for convenience so "os" does not have to be imported
const (
2021-06-20 16:12:39 +00:00
S_IFCHR = sysunix.S_IFCHR //nolint:revive
)