10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-24 11:47:41 +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()