mirror of
https://github.com/pomerium/pomerium.git
synced 2025-06-24 13:38:17 +02:00
9 lines
113 B
Go
9 lines
113 B
Go
//go:build !darwin
|
|
|
|
package testenv
|
|
|
|
import "testing"
|
|
|
|
func tempDir(t testing.TB) string {
|
|
return t.TempDir()
|
|
}
|