mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-11-04 13:13:55 +01:00
6 lines
110 B
Python
6 lines
110 B
Python
from enum import IntEnum,auto,unique
|
|
@unique
|
|
class Format(IntEnum):
|
|
LINE=auto()
|
|
COLUMN=auto()
|
|
TBE=auto() |