chandantul has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re: Need to know the export process of Dancer 2 app.
by 1nickt (Canon) on Jun 23, 2021 at 08:36 UTC

    Instead of trying to export @access_token you should call the subroutine in the other package inside webapp.pm. my $result = Op::api_call3(@access_token) or similar ... and you will have to finish writing the subroutine of course.


    The way forward always starts with a minimal test.

      Hi , I was able to fix the issue. Thanks for all your help.