added docstring

This commit is contained in:
ben
2026-04-02 12:27:22 -04:00
parent 0aa9950e18
commit 266ed86217
3 changed files with 5 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
"""Launcher shim for the Discord adapter."""
from youdis.adapters.discord import main from youdis.adapters.discord import main

View File

@@ -1,3 +1,5 @@
"""Discord adapter for interacting with FastAPI backend worker."""
import asyncio import asyncio
from os import getenv from os import getenv

View File

@@ -1,3 +1,5 @@
"""FastAPI backend worker managing yt-dlp subprocess jobs and exposing job state."""
import asyncio import asyncio
from asyncio.subprocess import PIPE, STDOUT from asyncio.subprocess import PIPE, STDOUT
from collections import deque from collections import deque