7 lines
127 B
Python
7 lines
127 B
Python
from enum import Enum
|
|
|
|
|
|
class AnimeListServices(Enum):
|
|
ANILIST = "anilist"
|
|
MYANIMELIST = "mal"
|
|
ANIMEPLANET = "apl"
|