🔖 Bump version: 0.1.0 → 1.0.0

This commit is contained in:
Marc Koch 2025-03-20 15:32:30 +01:00
parent cbf68294ca
commit b7311d088d
Signed by untrusted user who does not match committer: marc.koch
GPG key ID: 12406554CFB028B9
21 changed files with 1993 additions and 223 deletions

11
src/adgroupsync/enums.py Normal file
View 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