8 lines
208 B
Python
8 lines
208 B
Python
from enum import Enum
|
|
|
|
|
|
class Endpoints(str, Enum):
|
|
RETAIL_CURRENT = '/v2/current/retail.json'
|
|
CLASSIC_CURRENT = '/v2/current/classic.json'
|
|
RETAIL_HISTORY_ALL = '/v2/relative/retail/us/all.json'
|