12 lines
303 B
Python
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
|