package talentspace_portal2::Controller::Word;

use strict;
use warnings;

use base 'Catalyst::Controller';


=head1 NAME

Demo Page Controller.  Add your name here.

=head1 SYNOPSIS

This page controller is an example.  You can copy this to make new ones.

=head1 DESCRIPTION

Add your description here.

=head1 METHODS

This controller uses the following methods

=head2 

demo, The action associated with the demo namespace

=cut

sub single : Path : Args(1) {
     my ( $self, $c, $word ) = @_;
     $c->response->body("Word: $word");
}



=head1 AUTHOR	

John Napiorkowski

=head1 LICENSE

This library is free software, you can redistribute it and/or modify
it under the same terms as Perl itself.

=cut

1;
