mirror of
https://github.com/creyD/creyPY.git
synced 2026-04-13 03:40:31 +02:00
11 lines
146 B
Python
11 lines
146 B
Python
import enum
|
|
|
|
|
|
class GroupMode(str, enum.Enum):
|
|
Minute = "1m"
|
|
Hour = "1h"
|
|
Day = "1d"
|
|
Week = "7d"
|
|
Month = "1mo"
|
|
Year = "1y"
|