mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 04:54:18 +00:00
✨ Add new condition types
This commit is contained in:
parent
425eb4fec0
commit
72d349aa90
1 changed files with 7 additions and 0 deletions
|
@ -6,9 +6,16 @@ import enum
|
|||
|
||||
|
||||
class ConditionType(enum.Enum):
|
||||
"""
|
||||
Vedi `Specifica delle Conditions su
|
||||
GitLab <https://gitlab.steffo.eu/nest/g2-progetto/-/wikis/Specifica-delle-Conditions>`_ .
|
||||
"""
|
||||
|
||||
hashtag = 0
|
||||
location = 1
|
||||
time = 2
|
||||
coordinates = 3
|
||||
place = 4
|
||||
|
||||
|
||||
class OperationType(enum.Enum):
|
||||
|
|
Loading…
Reference in a new issue