Help for this page

Select Code to Download


  1. or download this
    use Plack::Builder;
    use RaisinApp1;
    ...
      mount '/app1' => RaisinApp1->new();
      mount '/app2' => RaisinApp2->new();
    };
    
  2. or download this
    my $app1 = some_scope_wrapper(sub { 
                 use Raisin::API;
    ...
               });
    
    # Raisin code won't work here...