2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 03:06:37 +00:00

Meta.pm: add public function to register packages out of {global}{modpath} and {global}{modpath} . /FHEM/

git-svn-id: https://svn.fhem.de/fhem/trunk@26889 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
LeonGaultier 2022-12-23 15:04:11 +00:00
parent 02e5dca371
commit b321c55c0e

View File

@ -1078,6 +1078,14 @@ sub ModuleIsPerlCore {
}
}
# Extract metadata from FHEM module file, public function - CoolTux
sub getMetadata {
my $filePath = shift;
my $modMeta = shift;
return __GetMetadata($filePath,$modMeta);
}
##########
# Private functions
#