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

# This is the module behind the "ur" executable.

use strict;
use warnings;
use UR;
use UR::Namespace::Command::Base;

our $VERSION = "0.41"; # UR $VERSION;

UR::Object::Type->define(
    class_name => __PACKAGE__,
    is => 'Command',
    doc => 'tools to create and maintain a ur class tree'
);

1;