Files
g0v0-server/app/fetcher/__init__.py
2025-07-26 16:06:53 +08:00

11 lines
238 B
Python

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