The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package DeepNamespace::Web::User::C::Root;
use strict;
use warnings;

sub index {
    my ($class, $c) = @_;
    $c->render("index");
}

1;