mirror of
https://github.com/dw-0/kiauh.git
synced 2025-12-23 07:43:36 +05:00
9 lines
128 B
Python
9 lines
128 B
Python
from enum import unique, Enum
|
|
|
|
|
|
@unique
|
|
class NameScheme(Enum):
|
|
SINGLE = "SINGLE"
|
|
INDEX = "INDEX"
|
|
CUSTOM = "CUSTOM"
|