7 lines
84 B
Python
7 lines
84 B
Python
from enum import IntEnum, unique
|
|
|
|
|
|
@unique
|
|
class FileType(IntEnum):
|
|
LEVELDB = 0
|