Revision 280 (by ahitrov, 2013/02/18 17:36:00) Plugin import
package MySQL::Globals;

use strict;
use warnings 'all';
use vars qw($VERSION @ISA @EXPORT $mysql $mstate);

use Exporter;
@ISA = qw(Exporter);
@EXPORT = qw ( $mysql $mstate );

$VERSION =	'1.0';

$mysql = undef;
$mstate = undef;

1;