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

12 lines
303 B
Python

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