/lib/AwesomeGrid.pm
package AwesomeGrid;

# For paranoia's sake
umask 0077;

our $version = 0.1;

our $confdir;
if ($ENV{AWESOMEGRID_CONFDIR}) {
	$confdir = $ENV{AWESOMEGRID_CONFDIR};
} else {
	$confdir = '/etc/awesomegrid';
}

1;