connectd/introd/__init__.py
root 99946bfef5 autonomous daemon with platform-native contact detection
- determine_contact_method now recognizes mastodon/bluesky users by platform
- username IS the handle for platform-native users
- fixed orphaned matches table issue
- wave 1 intros sent successfully
2025-12-16 09:22:58 +00:00

10 lines
328 B
Python

"""
introd - outreach module
drafts intros, queues for human review, sends via appropriate channel
"""
from .draft import draft_intro
from .review import get_pending_intros, approve_intro, reject_intro
from .send import send_intro
__all__ = ['draft_intro', 'get_pending_intros', 'approve_intro', 'reject_intro', 'send_intro']