Line # Revision Author
1 280 ahitrov package MySQL::Globals;
2
3 use strict;
4 use warnings 'all';
5 use vars qw($VERSION @ISA @EXPORT $mysql $mstate);
6
7 use Exporter;
8 @ISA = qw(Exporter);
9 @EXPORT = qw ( $mysql $mstate );
10
11 $VERSION = '1.0';
12
13 $mysql = undef;
14 $mstate = undef;
15
16 1;