10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-04 02:16:11 +02:00
QUESTDB_website/tools/lib/Format.py

6 lines
110 B
Python
Raw Normal View History

from enum import IntEnum,auto,unique
@unique
2019-12-03 15:24:29 +01:00
class Format(IntEnum):
LINE=auto()
2019-12-03 15:24:29 +01:00
COLUMN=auto()
TBE=auto()