10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-04 10:26:06 +02:00
QUESTDB_website/tools/lib/Format.py
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()