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