mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
15 lines
145 B
Raku
Executable File
15 lines
145 B
Raku
Executable File
# mod_info.pl
|
|
# This module defines only handlers
|
|
|
|
sub mod_info_directives
|
|
{
|
|
return ();
|
|
}
|
|
|
|
sub mod_info_handlers
|
|
{
|
|
return ("server-info");
|
|
}
|
|
|
|
1;
|