view Lib/IMPL.pm @ 156:8638dd1374bf

Added template property to IMPL::Web::QueryHandler::PageFormat (this allows to specify exact template (filename, ref to a scalar, ref to a file handle)).
author wizard
date Tue, 05 Oct 2010 17:20:51 +0400
parents c2aa10fbb396
children 6ce1f052b90a
line wrap: on
line source

package IMPL;
use strict;

use Exporter;
our @EXPORT_OK = qw( &Debug );

our $Debug = 1 unless defined $Debug;

sub Debug() {
	$Debug
}

1;