File: OnDemand.pm

package info (click to toggle)
libcli-osprey-perl 0.08-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 200 kB
  • sloc: perl: 843; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 159 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
package OnDemand;

use Moo;
use CLI::Osprey on_demand => $::on_demand;

subcommand foo => 'OnDemand::Foo';
subcommand bar => 'OnDemand::Bar';

sub run { }

1;