#!/usr/bin/env perl

=head1 SYNOPSIS

  Available commands:

    commands: list the application's commands
        help: display a command's help screen

        lint: Charm Linter


=head1 DESCRIPTION

A perl way to charm authoring. CharmKit allows the creation of charm
projects for publishing to the Charm Store. In addition, there is built in
charm linter, packaging of all hooks and their dependencies, testing framework,
and helper routines to aide in the development of charms.

=cut

use strict;
use warnings;
use App::CharmKit;

App::CharmKit->run;
