1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-12 16:21:30 +03:00
Peter Eisentraut 804a507922 Fix whitespace
2022-06-08 14:27:42 +02:00

16 lines
293 B
Perl

# Copyright (c) 2022, PostgreSQL Global Development Group
# allow use of release 15+ perl namespace in older branches
# just 'use' the older module name.
# See PostgresNode.pm for function implementations
package PostgreSQL::Test::Cluster;
use strict;
use warnings;
use PostgresNode;
1;