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