Remove shebang lines from Perl modules, ignore that empty module for now...

This commit is contained in:
swag 2022-10-01 16:22:21 -04:00
parent ffe9a19d17
commit 39f01309d6
4 changed files with 1 additions and 7 deletions

View File

@ -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;

View File

View File

@ -1,5 +1,3 @@
#!/usr/bin/env perl
package PostText::Model::Remark;
use Mojo::Base -base, -signatures;

View File

@ -1,5 +1,3 @@
#!/usr/bin/env perl
package PostText::Model::Thread;
use Mojo::Base -base, -signatures;