]> git.evergreen-ils.org Git - working/NCIPServer.git/blob - lib/NCIP/Configuration.pm
Starting work on the configuration module
[working/NCIPServer.git] / lib / NCIP / Configuration.pm
1 package NCIP::Configuration;
2 #
3 #===============================================================================
4 #
5 #         FILE: Configuration.pm
6 #
7 #  DESCRIPTION:
8 #
9 #        FILES: ---
10 #         BUGS: ---
11 #        NOTES: ---
12 #       AUTHOR: Chris Cormack (rangi), chrisc@catalyst.net.nz
13 # ORGANIZATION: Koha Development Team
14 #      VERSION: 1.0
15 #      CREATED: 28/08/13 10:16:55
16 #     REVISION: ---
17 #===============================================================================
18
19 =head1 NAME
20   
21   NCIP::Configuration
22
23 =head1 SYNOPSIS
24
25   use NCIP::Configuration;
26   my $config = NCIP::Configuration->new($config_dir);
27
28 =cut
29
30 use Modern::Perl;
31
32 use base qw(Config::Merge);
33
34 1;
35