Skip to content

Commit

Permalink
- Fixed bin/pwc.psgi
Browse files Browse the repository at this point in the history
  • Loading branch information
manwar committed Apr 20, 2024
1 parent 019d833 commit 625fc82
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions bin/pwc.psgi
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
use strict;
use warnings;
use 5.030;
use Path::This "$THISDIR";
use Path::This qw($THISDIR);
use lib "$THISDIR/../lib";

our $VERSION = '0.0.1';

use TheWeeklyChallenge;
use PWC;

TheWeeklyChallenge->to_app;
PWC->to_app;
2 changes: 1 addition & 1 deletion public/dispatch.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use 5.030;
use Dancer2;
use Path::This "$THISDIR";
use Path::This qw($THISDIR);
use Plack::Runner;

our $VERSION = '0.0.1';
Expand Down
2 changes: 1 addition & 1 deletion public/dispatch.fcgi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use 5.030;
use Dancer2;
use Path::This "$THISDIR";
use Path::This qw($THISDIR);
use Plack::Handler::FCGI;
use English qw(-no_match_vars);

Expand Down

0 comments on commit 625fc82

Please sign in to comment.