github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/utils/consts/consts_unix.go (about) 1 //go:build !windows 2 // +build !windows 3 4 package consts 5 6 const ( 7 // PathSlash is an OS specific directory separator 8 PathSlash = "/" 9 10 // tempDir is the location of temp directory if it cannot be automatically determind 11 tempDir = "/tmp/murex/" 12 )