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

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

UR::Object::Type->define(
    class_name => __PACKAGE__,
    is => 'UR::Namespace::Command::Base',
    doc => "define namespaces, data sources and classes",
);

sub sub_command_sort_position { 2 }

sub shell_args_description { "[namespace|...]"; }

1;