mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +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;
|
|
|