5 lines
71 B
Python
5 lines
71 B
Python
from enum import Enum
|
|
|
|
class DateTime(str, Enum):
|
|
Ymd = "%Y-%m-%d"
|