From 39f01309d635e185e458facc0bfe20fec1c74860 Mon Sep 17 00:00:00 2001 From: swag Date: Sat, 1 Oct 2022 16:22:21 -0400 Subject: [PATCH] Remove shebang lines from Perl modules, ignore that empty module for now... --- lib/PostText.pm | 4 +--- lib/PostText/Controller/Remark.pm | 0 lib/PostText/Model/Remark.pm | 2 -- lib/PostText/Model/Thread.pm | 2 -- 4 files changed, 1 insertion(+), 7 deletions(-) create mode 100644 lib/PostText/Controller/Remark.pm diff --git a/lib/PostText.pm b/lib/PostText.pm index 45af8a5..1cf3bfd 100644 --- a/lib/PostText.pm +++ b/lib/PostText.pm @@ -1,9 +1,7 @@ -#!/usr/bin/env perl +package PostText; # Sep 22 -package PostText; - use Mojo::Base 'Mojolicious', -signatures; use Mojo::Pg; use PostText::Model::Thread; diff --git a/lib/PostText/Controller/Remark.pm b/lib/PostText/Controller/Remark.pm new file mode 100644 index 0000000..e69de29 diff --git a/lib/PostText/Model/Remark.pm b/lib/PostText/Model/Remark.pm index a3e3135..5b0f73e 100644 --- a/lib/PostText/Model/Remark.pm +++ b/lib/PostText/Model/Remark.pm @@ -1,5 +1,3 @@ -#!/usr/bin/env perl - package PostText::Model::Remark; use Mojo::Base -base, -signatures; diff --git a/lib/PostText/Model/Thread.pm b/lib/PostText/Model/Thread.pm index afb735e..d283c30 100644 --- a/lib/PostText/Model/Thread.pm +++ b/lib/PostText/Model/Thread.pm @@ -1,5 +1,3 @@ -#!/usr/bin/env perl - package PostText::Model::Thread; use Mojo::Base -base, -signatures;