mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-22 23:21:03 +00:00
9 lines
133 B
Go
9 lines
133 B
Go
package commands
|
|
|
|
func getPlatform() *Platform {
|
|
return &Platform{
|
|
os: "windows",
|
|
shell: "cmd",
|
|
shellArg: "/c",
|
|
}
|
|
}
|