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

O Operator
Diff

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

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

Added
+0
lines
Removed
-0
lines
Context
11
unchanged
Blobs
from b57b13522e53
to b57b13522e53
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::ContactCredits;
22# Stub -- WebSTLs buyer-credit model; no CRM equivalent.
33use strict; use warnings;
44sub new { return bless {}, shift }
55our $AUTOLOAD;
66sub AUTOLOAD {
77 my $name = $AUTOLOAD; $name =~ s/.*:://;
88 return if $name eq 'DESTROY';
99 return wantarray ? () : undef;
1010}
11111;