feat(podcasts): add shared duration limit constants

This commit is contained in:
CREDO23 2026-06-16 23:38:27 +02:00
parent a7be41d50a
commit 9583e8f250

View file

@ -0,0 +1,6 @@
"""Shared bounds and defaults for podcast target duration."""
MAX_DURATION_SECONDS = 24 * 60 * 60
MIN_DURATION_SECONDS = 15
DEFAULT_MIN_SECONDS = 20
DEFAULT_MAX_SECONDS = 30