mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-11-28 00:03:39 +00:00
10 lines
256 B
Go
10 lines
256 B
Go
package common
|
|
|
|
import "os"
|
|
|
|
// TempDir returns a temporary directory with the given pattern, prefixed with STABILITY_TEMP_DIR_
|
|
func TempDir(pattern string) (string, error) {
|
|
const prefix = "STABILITY_TEMP_DIR_"
|
|
return os.MkdirTemp("", prefix+pattern)
|
|
}
|