package config import "os" const TempRoot = "/tmp" func MkdirTemp(prefix string) (string, error) { return os.MkdirTemp(TempRoot, prefix) }