1 //go:build windows 2 // +build windows 3 4 package pq 5 6 // sslKeyPermissions checks the permissions on user-supplied ssl key files. 7 // The key file should have very little access. 8 // 9 // libpq does not check key file permissions on Windows. 10 func sslKeyPermissions(string) error { return nil } 11