Files
cmbot/src/services/file_service.py
T

6 lines
157 B
Python
Raw Normal View History

2026-06-15 15:53:01 +08:00
SUPPORTED_IMAGE_EXTENSIONS = {".png", ".jpg", ".jpeg", ".webp"}
def is_supported_image(path):
return path.suffix.lower() in SUPPORTED_IMAGE_EXTENSIONS