Advertisement
Guest User

Untitled

a guest
Apr 17th, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.26 KB | None | 0 0
  1. package Mojolicious::Command::deploy;
  2. use Mojo::Base 'Mojolicious::Command';
  3.  
  4. has description => 'Will create an empty sqlite3 database';
  5. has usage => "Usage: APPLICATION DBDeploy\n";
  6.  
  7. sub run {
  8.     my $self = shift;
  9.  
  10.     say 'hola';
  11.     $self->debug('ole');
  12. }
  13.  
  14. 1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement