10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-23 19:27:42 +02:00
QUESTDB_website/tools/lib/Orientation.py

5 lines
102 B
Python

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