Files
webmin/gray-theme/gray-theme-lib.pl
2022-06-30 13:08:38 +03:00

12 lines
179 B
Perl

# Common functions for theme CGIs
use strict;
use warnings;
no warnings 'redefine';
no warnings 'uninitialized';
BEGIN { push(@INC, ".."); };
use WebminCore;
&init_config();
1;