You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use Plack::Builder;
use File::ShareDir qw/dist_dir/;
use MyApp;
my $app = MyApp->run;
builder {
mount "/selenium" => builder {
my $dist_dir = dist_dir('TRunner'); # autodie unless installed TRunner
Plack::Util::load_psgi "$dist_dir/app.psgi";
},
mount "/" => $app;
};