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