Files
gluetun/internal/unix/constants.go
Quentin McGaw (desktop) 400affe429 Maintenance: add revive linter
2021-06-20 16:12:39 +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:revive
)