mirror of
https://github.com/webmin/webmin.git
synced 2026-01-16 15:06:07 +00:00
16 lines
125 B
Raku
Executable File
16 lines
125 B
Raku
Executable File
# mod_asis.pl
|
|
# No directives
|
|
|
|
sub mod_asis_directives
|
|
{
|
|
return ();
|
|
}
|
|
|
|
sub mod_asis_handlers
|
|
{
|
|
return ("send-as-is");
|
|
}
|
|
|
|
1;
|
|
|