aboutsummaryrefslogtreecommitdiffstats
path: root/AdminPanel
diff options
context:
space:
mode:
authorMatteo Pasotti <matteo.pasotti@gmail.com>2014-01-11 15:05:46 +0100
committerMatteo Pasotti <matteo.pasotti@gmail.com>2014-01-11 15:05:46 +0100
commit3b1d4b65b5fa800b3cdfa0e7f6faba6bd7c456ed (patch)
tree113887c85e91f80e09faef5c1ad199b235b62735 /AdminPanel
parent6b286b4fd6978dee6a5153ef423fe1ef2865c168 (diff)
downloadcolin-keep-3b1d4b65b5fa800b3cdfa0e7f6faba6bd7c456ed.tar
colin-keep-3b1d4b65b5fa800b3cdfa0e7f6faba6bd7c456ed.tar.gz
colin-keep-3b1d4b65b5fa800b3cdfa0e7f6faba6bd7c456ed.tar.bz2
colin-keep-3b1d4b65b5fa800b3cdfa0e7f6faba6bd7c456ed.tar.xz
colin-keep-3b1d4b65b5fa800b3cdfa0e7f6faba6bd7c456ed.zip
- added hosts module
Diffstat (limited to 'AdminPanel')
-rw-r--r--AdminPanel/Hosts/hosts.pm12
1 files changed, 12 insertions, 0 deletions
diff --git a/AdminPanel/Hosts/hosts.pm b/AdminPanel/Hosts/hosts.pm
new file mode 100644
index 0000000..7bcdf7e
--- /dev/null
+++ b/AdminPanel/Hosts/hosts.pm
@@ -0,0 +1,12 @@
+package AdminPanel::Hosts::hosts;
+
+use Modern::Perl 2011;
+use autodie;
+use diagnostics;
+# use Config::Hosts;
+
+use base qw(Exporter);
+our @EXPORT = qw(
+ );
+
+1;