mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-28 13:43:28 -08:00
12 lines
448 B
Python
12 lines
448 B
Python
from .allanime.constants import SERVERS_AVAILABLE as ALLANIME_SERVERS
|
|
from .animepahe.constants import SERVERS_AVAILABLE as ANIMEPAHESERVERS
|
|
from .aniwatch.constants import SERVERS_AVAILABLE as ANIWATCHSERVERS
|
|
|
|
anime_sources = {
|
|
"allanime": "api.AllAnimeAPI",
|
|
"animepahe": "api.AnimePaheApi",
|
|
"aniwatch": "api.AniWatchApi",
|
|
"aniwave": "api.AniWaveApi",
|
|
}
|
|
SERVERS_AVAILABLE = [*ALLANIME_SERVERS, *ANIMEPAHESERVERS, *ANIWATCHSERVERS]
|