github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/utils/consts/consts_windows.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  	// Normally in Windows this would be a \ but lets standardise everything in murex to be /
     9  	PathSlash = "/"
    10  
    11  	// tempDir is the location of temp directory if it cannot be automatically determind
    12  	tempDir = `c:/temp/murex/`
    13  )