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