The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package UR::Namespace::Command::Define::Datasource::Pg;

use strict;
use warnings;
use UR;
our $VERSION = "0.45"; # UR $VERSION;

UR::Object::Type->define(
    class_name => __PACKAGE__,
    is => "UR::Namespace::Command::Define::Datasource::RdbmsWithAuth",
);

sub help_brief {
   "Add a PostgreSQL data source to the current namespace."
}

sub _data_source_sub_class_name {
    'UR::DataSource::Pg'
}

1;