Files
college_craft/site/social/connectors/base.py
T
ai_ml_operations 3a14bfb996 Initial commit
2026-08-27 04:17:34 -07:00

11 lines
226 B
Python

from typing import Protocol
class SocialConnector(Protocol):
platform: str
def publish(self, post, target) -> str:
"""Publish and return remote post id."""
def refresh_token(self, account) -> None: ...