🔖 Bump version: 0.1.0 → 1.0.0
This commit is contained in:
parent
cbf68294ca
commit
b7311d088d
21 changed files with 1993 additions and 223 deletions
11
src/adgroupsync/enums.py
Normal file
11
src/adgroupsync/enums.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
from enum import Enum
|
||||
|
||||
class Priority(Enum):
|
||||
"""
|
||||
Enum for the different priority levels.
|
||||
"""
|
||||
MIN = 1
|
||||
LOW = 2
|
||||
DEFAULT = 3
|
||||
HIGH = 4
|
||||
MAX = URGENT = 5
|
Loading…
Add table
Add a link
Reference in a new issue