diff options
author | Angelo Naselli <anaselli@linux.it> | 2014-06-24 12:35:23 +0200 |
---|---|---|
committer | Angelo Naselli <anaselli@linux.it> | 2014-06-24 12:35:23 +0200 |
commit | 1c5bfcf6a198bb5726eac311905c2cc73c79f357 (patch) | |
tree | 4ae7610458f1b8e606359a6e78f20226ddcdeb3f /scripts | |
parent | bc3e68fecac0b3edc85e707e3c14135cf76c94c3 (diff) | |
download | manatools-1c5bfcf6a198bb5726eac311905c2cc73c79f357.tar manatools-1c5bfcf6a198bb5726eac311905c2cc73c79f357.tar.gz manatools-1c5bfcf6a198bb5726eac311905c2cc73c79f357.tar.bz2 manatools-1c5bfcf6a198bb5726eac311905c2cc73c79f357.tar.xz manatools-1c5bfcf6a198bb5726eac311905c2cc73c79f357.zip |
Adding a first attempt to port Clock, not working yet
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/adminClock | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/adminClock b/scripts/adminClock new file mode 100755 index 00000000..37aadb68 --- /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; |