package TestAppShowInternalActions::Controller::Root;
use Moose;
use namespace::clean -except => [ 'meta' ];

BEGIN { extends 'Catalyst::Controller' }

__PACKAGE__->config(namespace => '');

sub index :Path :Args(0) {
    my ( $self, $c ) = @_;

    $c->response->body( 'hello world' );
}

sub end : Action {}

__PACKAGE__->meta->make_immutable;

1;
