mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-06-07 02:16:35 +00:00
10 lines
126 B
Go
10 lines
126 B
Go
// +build darwin dragonfly freebsd linux netbsd openbsd solaris
|
|
|
|
package cli
|
|
|
|
import "os"
|
|
|
|
func clearenv() {
|
|
os.Clearenv()
|
|
}
|