"""Video Type Logic.""" from typing import Any from video.models.sql.classes import video_type def get_all_video_types() -> list[dict[str, Any]]: """Get array of video types.""" return video_type.get_all()