10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2025-01-13 14:29:08 +01:00
2020-01-29 17:20:34 +01:00

6 lines
110 B
Python

from enum import IntEnum,auto,unique
@unique
class Format(IntEnum):
LINE=auto()
COLUMN=auto()
TBE=auto()