NAME

A - application

SYNOPSIS

# inside your application lib/A.pm
package A;

use lib 'ext/MojoDebug';
use lib 'ext/LocalConfig';
use lib 'ext/Util';

use C;
use L;
use D;


# then in your scripts/helpers or application
use A; # Now you have the same environment

DESCRIPTION

This module exists to setup something global for your application. Prepare namespaces, load libraries etc. Also you could define application scoped logic which could be reused from anywhere, eg. bootstraping. This is similar to `use Mojo::Base -base;` idea. See Mojo::Base.

SEE ALSO

C, I, L, M, S, T, U.