Girocco/CGI.pm: add missing `require Exporter`
commitcd9371db878540da2509a744dd0ba27448e486eb
authorKyle J. McKay <mackyle@gmail.com>
Sat, 12 Dec 2020 16:18:00 +0000 (12 09:18 -0700)
committerKyle J. McKay <mackyle@gmail.com>
Sat, 12 Dec 2020 16:18:00 +0000 (12 09:18 -0700)
tree5f2b335ddd77d56b0a7a70d2e0df23a27573b89b
parent618bb2d53b229fb02b7dc1e981ab32a713f068e2
Girocco/CGI.pm: add missing `require Exporter`

Before adding a class to @ISA it's important to make sure it's been
loaded.

Previously this has not been a problem because of `use Girocco::Util`
that executes before modifying @ISA and which has the side effect
of loading the `Exporter` class.

Nevertheless, add the explicit `require Exporter` line to avoid
depending on this happenstance.

Signed-off-by: Kyle J. McKay <mackyle@gmail.com>
Girocco/CGI.pm