Files
g0v0-server/app/fetcher/__init__.py
2025-08-17 18:14:34 +00:00

12 lines
300 B
Python

from __future__ import annotations
from .beatmap import BeatmapFetcher
from .beatmap_raw import BeatmapRawFetcher
from .beatmapset import BeatmapsetFetcher
class Fetcher(BeatmapFetcher, BeatmapsetFetcher, BeatmapRawFetcher):
"""A class that combines all fetchers for easy access."""
pass