package API::Command::Hello;
use strict;
use warnings;

use base 'API::Command';

use lib '/app/tools/common/lib';
use RSApache::Response::Raw;

sub area { return "user"; }
sub cmd  { return "hello"; }

sub execute {
    my ($self) = @_;

    my $response = RSApache::Response::Raw->new( "Hello." );
    return $response;

}

1;
