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

O Operator
Diff

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

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

Added
+0
lines
Removed
-0
lines
Context
12
unchanged
Blobs
from 6ed06756bf1b
to 6ed06756bf1b
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::Channels;
22# Stub -- this was the WebSTLs marketplace adapter; no CRM analogue.
33use strict; use warnings;
44our @PLATFORMS = ();
55sub new { return bless {}, shift }
66our $AUTOLOAD;
77sub AUTOLOAD {
88 my $name = $AUTOLOAD; $name =~ s/.*:://;
99 return if $name eq 'DESTROY';
1010 return wantarray ? () : undef;
1111}
12121;