diff options
author | Jannis M. Hoffmann <jannis.hoffmann@rwth-aachen.de> | 2020-10-29 12:13:04 +0100 |
---|---|---|
committer | Jannis M. Hoffmann <jannis.hoffmann@rwth-aachen.de> | 2020-10-29 12:13:04 +0100 |
commit | ee43823179ee627ac16ea9da8168e5f1bf9619c0 (patch) | |
tree | 5e6c36d5629d2ce79f3cb1310998dc715a6f19c7 /script |
Initial commit; Stable version
Diffstat (limited to 'script')
-rwxr-xr-x | script/jwebmail | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/script/jwebmail b/script/jwebmail new file mode 100755 index 0000000..7265d71 --- /dev/null +++ b/script/jwebmail @@ -0,0 +1,11 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +use Mojo::File qw(curfile); +use lib curfile->dirname->sibling('lib')->to_string; +use Mojolicious::Commands; + +# Start command line interface for application +Mojolicious::Commands->start_app('JWebmail'); |