mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-22 14:00:14 -05:00
13 lines
285 B
Go
13 lines
285 B
Go
//go:build darwin && amd64
|
|
// +build darwin,amd64
|
|
|
|
package platform
|
|
|
|
var Paths = PlatformPaths{
|
|
TarFileName: "postgres-darwin-x86_64.txz",
|
|
InitDbExecutable: "initdb",
|
|
PostgresExecutable: "postgres",
|
|
PgDumpExecutable: "pg_dump",
|
|
PgRestoreExecutable: "pg_restore",
|
|
}
|