mirror of
https://github.com/Benexl/FastAnime.git
synced 2026-01-09 19:55:09 -08:00
11 lines
412 B
Python
11 lines
412 B
Python
from .allanime.constants import SERVERS_AVAILABLE as ALLANIME_SERVERS
|
|
from .animepahe.constants import SERVERS_AVAILABLE as ANIMEPAHESERVERS
|
|
from .hianime.constants import SERVERS_AVAILABLE as ANIWATCHSERVERS
|
|
|
|
anime_sources = {
|
|
"allanime": "api.AllAnimeAPI",
|
|
"animepahe": "api.AnimePaheApi",
|
|
"hianime": "api.HiAnimeApi",
|
|
}
|
|
SERVERS_AVAILABLE = [*ALLANIME_SERVERS, *ANIMEPAHESERVERS, *ANIWATCHSERVERS]
|