aboutsummaryrefslogtreecommitdiff
path: root/SBO-Lib/lib/SBO/App.pm
diff options
context:
space:
mode:
Diffstat (limited to 'SBO-Lib/lib/SBO/App.pm')
-rw-r--r--SBO-Lib/lib/SBO/App.pm26
1 files changed, 0 insertions, 26 deletions
diff --git a/SBO-Lib/lib/SBO/App.pm b/SBO-Lib/lib/SBO/App.pm
deleted file mode 100644
index d8de5c6..0000000
--- a/SBO-Lib/lib/SBO/App.pm
+++ /dev/null
@@ -1,26 +0,0 @@
-package SBO::App;
-
-# vim: ts=2:et
-#
-# authors: Luke Williams <xocel@iquidus.org>
-# Jacob Pipkin <j@dawnrazor.net>
-# Andreas Guldstrand <andreas.guldstrand@gmail.com>
-# maintainer: Slack Coder <slackcoder@server.ky>
-
-use 5.16.0;
-use strict;
-use warnings FATAL => 'all';
-use File::Basename;
-
-our $VERSION = '2.8.0';
-
-sub new {
- my $class = shift;
-
- my $self = $class->_parse_opts(@_);
- $self->{fname} = basename( (caller(0))[1] );
-
- return bless $self, $class;
-}
-
-1;