From 5752b3a4d8f4b9c04673bb8894b9b8b3219f66e4 Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Wed, 14 Jan 2015 18:31:44 +0000 Subject: [PATCH] myUtilsTemplate.pm: remove 99_Utils from the FHEMWEB Edit list (Forum #31932) git-svn-id: https://svn.fhem.de/fhem/trunk@7570 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/myUtilsTemplate.pm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 fhem/FHEM/myUtilsTemplate.pm diff --git a/fhem/FHEM/myUtilsTemplate.pm b/fhem/FHEM/myUtilsTemplate.pm new file mode 100644 index 000000000..49a75af58 --- /dev/null +++ b/fhem/FHEM/myUtilsTemplate.pm @@ -0,0 +1,22 @@ +############################################## +# $Id$ +# +# Save this file as 99_myUtils.pm, and create your own functions in the new +# file. They are then available in every Perl expression. + +package main; + +use strict; +use warnings; +use POSIX; + +sub +myUtils_Initialize($$) +{ + my ($hash) = @_; +} + +# Enter you functions below _this_ line. + + +1;