mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-11-04 21:24:00 +01:00
8 lines
151 B
Python
8 lines
151 B
Python
from enum import IntEnum,auto,unique
|
|
@unique
|
|
class Format(IntEnum):
|
|
LINE=auto()
|
|
COLUMN=auto()
|
|
DOUBLECOLUMN=auto()
|
|
TBE=auto()
|
|
DOUBLETBE=auto() |