aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAngelo Naselli <anaselli@linux.it>2014-06-24 12:35:23 +0200
committerAngelo Naselli <anaselli@linux.it>2014-06-24 12:35:23 +0200
commit1c5bfcf6a198bb5726eac311905c2cc73c79f357 (patch)
tree4ae7610458f1b8e606359a6e78f20226ddcdeb3f /scripts
parentbc3e68fecac0b3edc85e707e3c14135cf76c94c3 (diff)
downloadcolin-keep-1c5bfcf6a198bb5726eac311905c2cc73c79f357.tar
colin-keep-1c5bfcf6a198bb5726eac311905c2cc73c79f357.tar.gz
colin-keep-1c5bfcf6a198bb5726eac311905c2cc73c79f357.tar.bz2
colin-keep-1c5bfcf6a198bb5726eac311905c2cc73c79f357.tar.xz
colin-keep-1c5bfcf6a198bb5726eac311905c2cc73c79f357.zip
Adding a first attempt to port Clock, not working yet
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/adminClock9
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/adminClock b/scripts/adminClock
new file mode 100755
index 0000000..37aadb6
--- /dev/null
+++ b/scripts/adminClock
@@ -0,0 +1,9 @@
+#!/usr/bin/perl
+
+use AdminPanel::Module::Clock;
+
+my $clockManager = AdminPanel::Module::Clock->new();
+
+$clockManager->start();
+
+1;