7 lines
285 B
Python
7 lines
285 B
Python
def upload_to_peertube(video_path: Path, title: str, description: str) -> str:
|
||
"""
|
||
Stub for PeerTube upload – replace with real implementation later.
|
||
"""
|
||
print("⚠️ PeerTube upload not yet implemented.")
|
||
return "https://peertube.example.com/video-placeholder"
|