|  |  
 |   |   
 NAMEProclet::Declare - Declare interface to Proclet SYNOPSIS  use Proclet::Declare;
  
  color;
  env(
    DEBUG => 1,
    FOO => 1
  );
  service('web', 'plackup -p 5963 app.psgi');
  service('memcached', '/usr/local/bin/memcached', '-p', '11211');
  service('worker', './bin/worker');
  scheduled('tag', '0 12 * * *', sub { MyDailyWork->run });
  worker(
    'worker' => 5
  );
  
  run;
DESCRIPTIONProclet::Declare supports to use Proclet declare style FUNCTIONS
 AUTHORMasahiro Nagano <kazeburo {at} gmail.com> Tokuhiro Matsuno SEE ALSOProclet LICENSEThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. 
 
 |