mirror of
https://github.com/guilhermewerner/http
synced 2025-06-16 11:44:17 +00:00
20 lines
114 B
PowerShell
20 lines
114 B
PowerShell
#!/usr/bin/env pwsh
|
|
|
|
# Windows
|
|
|
|
if ($IsWindows)
|
|
{
|
|
}
|
|
|
|
# Mac
|
|
|
|
elseif ($IsMacOS)
|
|
{
|
|
}
|
|
|
|
# Linux
|
|
|
|
elseif ($IsLinux)
|
|
{
|
|
}
|