Diff -- /var/www/vhosts/3dshawn.com/crm.3dshawn.com/MODS/ContactForge/Storefront.pm

O Operator
Diff

/var/www/vhosts/3dshawn.com/crm.3dshawn.com/MODS/ContactForge/Storefront.pm

added on local at 2026-07-01 15:02:55

Added
+0
lines
Removed
-0
lines
Context
10
unchanged
Blobs
from 40fd09b9047c
to 40fd09b9047c
Restore this content →
Unified diff
Naive LCS-based line diff. Additions in emerald, deletions in rose. Both sides decompressed live from BLOB_STORE.
11package MODS::ContactForge::Storefront;
22use strict; use warnings;
33sub new { return bless {}, shift }
44our $AUTOLOAD;
55sub AUTOLOAD {
66 my $name = $AUTOLOAD; $name =~ s/.*:://;
77 return if $name eq 'DESTROY';
88 return wantarray ? () : undef;
99}
10101;